S
- the type of stateE
- the type of eventpublic class EntryPseudoState<S,E> extends java.lang.Object implements PseudoState<S,E>
PseudoState
.Constructor and Description |
---|
EntryPseudoState(State<S,E> state)
Instantiates a new entry pseudo state.
|
Modifier and Type | Method and Description |
---|---|
void |
addPseudoStateListener(PseudoStateListener<S,E> listener)
Registers a new
PseudoStateListener . |
reactor.core.publisher.Mono<State<S,E>> |
entry(StateContext<S,E> context)
Initiate an entry sequence for the state and return a next
state where state machine should go.
|
reactor.core.publisher.Mono<java.lang.Void> |
exit(StateContext<S,E> context)
Initiate an exit sequence for the state.
|
PseudoStateKind |
getKind()
Gets the pseudostate kind.
|
void |
setPseudoStateListeners(java.util.List<PseudoStateListener<S,E>> listeners)
Registers a new
PseudoStateListener s. |
public final PseudoStateKind getKind()
PseudoState
getKind
in interface PseudoState<S,E>
public reactor.core.publisher.Mono<State<S,E>> entry(StateContext<S,E> context)
PseudoState
entry
in interface PseudoState<S,E>
context
- the contextpublic reactor.core.publisher.Mono<java.lang.Void> exit(StateContext<S,E> context)
PseudoState
exit
in interface PseudoState<S,E>
context
- the contextpublic void addPseudoStateListener(PseudoStateListener<S,E> listener)
PseudoState
PseudoStateListener
.addPseudoStateListener
in interface PseudoState<S,E>
listener
- the listenerpublic void setPseudoStateListeners(java.util.List<PseudoStateListener<S,E>> listeners)
PseudoState
PseudoStateListener
s. Clears all
existing listeners.setPseudoStateListeners
in interface PseudoState<S,E>
listeners
- the listeners