Java org.springframework.statemachine.listener StateMachineListener fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.statemachine.listener StateMachineListener fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.statemachine.listener StateMachineListener.

The text is from its open source code.

Implementation

org.springframework.statemachine.listener.StateMachineListener has the following implementations.
Click this link to see all its implementation.

Method

voideventNotAccepted(Message event)
Notified when event was not accepted.
voidextendedStateChanged(Object key, Object value)
Notified when extended state variable is either added, modified or removed.
voidstateChanged(State from, State to)
Notified when state is changed.
voidstateContext(StateContext stateContext)
Notified on various Stage s about a StateContext .
voidstateEntered(State state)
Notified when state is entered.
voidstateExited(State state)
Notified when state is exited.
voidstateMachineError(StateMachine stateMachine, Exception exception)
Notified when statemachine enters error it can't recover from.
voidstateMachineStarted(StateMachine stateMachine)
Notified when statemachine starts
voidstateMachineStopped(StateMachine stateMachine)
Notified when statemachine stops
voidtransition(Transition transition)
Notified when transition happened.
voidtransitionEnded(Transition transition)
Notified when transition ended.
voidtransitionStarted(Transition transition)
Notified when transition started.