Interface StateMachineRuntimeProcessor<T,S,E>
- Type Parameters:
T
- the return typeS
- the type of stateE
- the type of event
- All Known Implementing Classes:
MethodInvokingStateMachineRuntimeProcessor
public interface StateMachineRuntimeProcessor<T,S,E>
Defines a strategy of processing a state machine and returning
some Object (or null).
-
Method Summary
Modifier and TypeMethodDescriptionprocess
(StateMachineRuntime<S, E> stateMachineRuntime) Process the container based on information available fromStateMachineRuntime
.
-
Method Details
-
process
Process the container based on information available fromStateMachineRuntime
.- Parameters:
stateMachineRuntime
- the yarn container runtime- Returns:
- the result
-