S
- the type of stateE
- the type of eventpublic abstract class AbstractTransition<S,E> extends java.lang.Object implements Transition<S,E>
Transition
.Modifier and Type | Field and Description |
---|---|
protected java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> |
actions |
protected State<S,E> |
target |
Constructor and Description |
---|
AbstractTransition(State<S,E> source,
State<S,E> target,
java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> actions,
E event,
TransitionKind kind,
java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Boolean>> guard,
Trigger<S,E> trigger)
Instantiates a new abstract transition.
|
AbstractTransition(State<S,E> source,
State<S,E> target,
java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> actions,
E event,
TransitionKind kind,
java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Boolean>> guard,
Trigger<S,E> trigger,
SecurityRule securityRule)
Instantiates a new abstract transition.
|
Modifier and Type | Method and Description |
---|---|
void |
addActionListener(ActionListener<S,E> listener)
Adds the action listener.
|
reactor.core.publisher.Mono<java.lang.Void> |
executeTransitionActions(StateContext<S,E> context)
Execute transition actions.
|
java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> |
getActions()
Gets the transition actions.
|
java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Boolean>> |
getGuard()
Gets the guard of this transition.
|
TransitionKind |
getKind()
Gets the transition kind.
|
SecurityRule |
getSecurityRule()
Gets the security rule.
|
State<S,E> |
getSource()
Gets the source state of this transition.
|
State<S,E> |
getTarget()
Gets the target state of this transition.
|
Trigger<S,E> |
getTrigger()
Gets the transition trigger.
|
void |
removeActionListener(ActionListener<S,E> listener)
Removes the action listener.
|
java.lang.String |
toString() |
reactor.core.publisher.Mono<java.lang.Boolean> |
transit(StateContext<S,E> context)
Transit this transition with a give state context.
|
protected final java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> actions
public AbstractTransition(State<S,E> source, State<S,E> target, java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> actions, E event, TransitionKind kind, java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Boolean>> guard, Trigger<S,E> trigger)
source
- the sourcetarget
- the targetactions
- the actionsevent
- the eventkind
- the kindguard
- the guardtrigger
- the triggerpublic AbstractTransition(State<S,E> source, State<S,E> target, java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> actions, E event, TransitionKind kind, java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Boolean>> guard, Trigger<S,E> trigger, SecurityRule securityRule)
source
- the sourcetarget
- the targetactions
- the actionsevent
- the eventkind
- the kindguard
- the guardtrigger
- the triggersecurityRule
- the security rulepublic State<S,E> getSource()
Transition
getSource
in interface Transition<S,E>
public Trigger<S,E> getTrigger()
Transition
getTrigger
in interface Transition<S,E>
public reactor.core.publisher.Mono<java.lang.Boolean> transit(StateContext<S,E> context)
Transition
transit
in interface Transition<S,E>
context
- the state contextpublic java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Boolean>> getGuard()
Transition
getGuard
in interface Transition<S,E>
public TransitionKind getKind()
Transition
getKind
in interface Transition<S,E>
public SecurityRule getSecurityRule()
Transition
getSecurityRule
in interface Transition<S,E>
public State<S,E> getTarget()
Transition
getTarget
in interface Transition<S,E>
public java.util.Collection<java.util.function.Function<StateContext<S,E>,reactor.core.publisher.Mono<java.lang.Void>>> getActions()
Transition
getActions
in interface Transition<S,E>
public void addActionListener(ActionListener<S,E> listener)
Transition
addActionListener
in interface Transition<S,E>
listener
- the listenerpublic void removeActionListener(ActionListener<S,E> listener)
Transition
removeActionListener
in interface Transition<S,E>
listener
- the listenerpublic reactor.core.publisher.Mono<java.lang.Void> executeTransitionActions(StateContext<S,E> context)
Transition
executeTransitionActions
in interface Transition<S,E>
context
- the state contextpublic java.lang.String toString()
toString
in class java.lang.Object