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 forInstruction
s toFiniteStateMachine
s.- Since:
- Coherence 12.2.1
- Author:
- Brian Oliver
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Instruction.ProcessEvent<S extends Enum<S>>
static class
Instruction.TransitionTo<S extends Enum<S>>
-
Field Summary
Fields Modifier and Type Field Description static Instruction
NOTHING
TheInstruction
for aFiniteStateMachine
to do nothing.static Instruction
STOP
TheInstruction
for aFiniteStateMachine
to stop.
-
-
-
Field Detail
-
NOTHING
static final Instruction NOTHING
TheInstruction
for aFiniteStateMachine
to do nothing.
-
STOP
static final Instruction STOP
TheInstruction
for aFiniteStateMachine
to stop.
-
-