Package com.tangosol.util.fsm
Interface Instruction
- All Known Implementing Classes:
Instruction.ProcessEvent
,Instruction.TransitionTo
,NonBlockingFiniteStateMachine.DelayedTransitionTo
,NonBlockingFiniteStateMachine.ProcessEventLater
public interface Instruction
A marker interface for
Instruction
s to FiniteStateMachine
s.- Since:
- Coherence 12.2.1
- Author:
- Brian Oliver
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
Instruction.ProcessEvent<S extends Enum<S>>
static final class
Instruction.TransitionTo<S extends Enum<S>>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Instruction
TheInstruction
for aFiniteStateMachine
to do nothing.static final Instruction
TheInstruction
for aFiniteStateMachine
to stop.
-
Field Details
-
NOTHING
TheInstruction
for aFiniteStateMachine
to do nothing. -
STOP
TheInstruction
for aFiniteStateMachine
to stop.
-