Package | Description |
---|---|
two_transitions_to_same_state |
Modifier and Type | Field and Description |
---|---|
static NumericExpressionField<A> |
A.Attribute.id |
Modifier and Type | Method and Description |
---|---|
A |
A.cancelSignal(Event<A> event) |
A |
A.cancelSignal(String eventSignatureKey) |
static A |
A.create(CreationEvent<A> creationEvent)
Static creator method using CreationEvent.
|
static A |
A.create(javax.persistence.EntityManager em,
CreationEvent<A> event)
Static creator method associated with the creation transition to 'Created' via event 'Create'.
|
static A |
A.create(Integer id)
Static creator method using id.
|
A |
A.delete()
Same as this.remove()
|
A |
A.event(Event<A> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
A |
A.load() |
A |
A.load(javax.persistence.EntityManager em)
Does a merge then a refresh and returns a new updated merged instance.
|
A |
A.merge(javax.persistence.EntityManager em)
Same as EntityManager.merge() except allows method chaining.
|
A |
A.persist()
Same as
persist(Context.em()) . |
A |
A.persist(javax.persistence.EntityManager em)
Same as EntityManager.persist() except allows method chaining.
|
A |
A.refresh(javax.persistence.EntityManager em)
Same as EntityManager.refresh() except inverted to facilitate method chaining.
|
A |
A.remove()
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
A |
A.remove(javax.persistence.EntityManager em)
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
A |
A.setId_(Integer id) |
A |
A.signal(Event<A> event)
Asychronously queues the given signal against this entity for processing.
|
A |
A.signal(Event<A> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
A |
A.signal(Event<A> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
Modifier and Type | Method and Description |
---|---|
static com.google.common.base.Optional<A> |
A.find(Integer id) |
static SelectBuilder<A> |
A.select() |
static SelectBuilder<A> |
A.select(BooleanExpression<A> where) |
Modifier and Type | Method and Description |
---|---|
A.Behaviour |
A.BehaviourFactory.create(A entity) |
Modifier and Type | Method and Description |
---|---|
A |
A.cancelSignal(Event<A> event) |
static A |
A.create(CreationEvent<A> creationEvent)
Static creator method using CreationEvent.
|
static A |
A.create(javax.persistence.EntityManager em,
CreationEvent<A> event)
Static creator method associated with the creation transition to 'Created' via event 'Create'.
|
A |
A.event(Event<A> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
static SelectBuilder<A> |
A.select(BooleanExpression<A> where) |
A |
A.signal(Event<A> event)
Asychronously queues the given signal against this entity for processing.
|
A |
A.signal(Event<A> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
A |
A.signal(Event<A> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
Copyright © 2012–2022. All rights reserved.