A - type of args for action callbackspublic static interface FiniteStateMachine.TimerCallback<A>
| Modifier and Type | Method and Description |
|---|---|
void |
triggerTimer(long timeout,
A val)
A function whose implementation would be triggered after state machine entered new state.
|
void triggerTimer(long timeout,
A val)
timeout - Time as given by current FiniteStateMachine.State table.val - Args that was given to FiniteStateMachine.handleEvent(Event, Object).