Interface Action<S,​E,​C>


  • public interface Action<S,​E,​C>
    Generic strategy interface used by a state machine to respond events by executing an Action with a StateContext.
    Author:
    Frank Zhang
    • Method Detail

      • execute

        void execute​(S from,
                     S to,
                     E event,
                     C context)