Interface StateChangeListener<T>


  • public interface StateChangeListener<T>
    Interface used to inform about changes in the state for a FSM.
    • Method Detail

      • stateChanged

        void stateChanged​(T source,
                          State oldState,
                          State newState)
        A change of state has occurred for a FSM.
        Parameters:
        source - the App Session that generated the change.
        oldState - Old state of FSM
        newState - New state of FSM