Interface TransitionAction<S extends Enum<S>>


public interface TransitionAction<S extends Enum<S>>
A TransitionAction encapsulates the actions to be performed as part of the Transition from one state to another.
Since:
Coherence 12.2.1
Author:
Brian Oliver
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onTransition(String sName, S stateFrom, S stateTo, Event<S> event, ExecutionContext context)
    Performs the necessary actions as part of a Transition from one state to another, triggered by a specified Event.