Class AbstractStateMachinePersister<S,E,T>

java.lang.Object
org.springframework.statemachine.persist.AbstractStateMachinePersister<S,E,T>
Type Parameters:
S - the type of state
E - the type of event
T - the type of context object
All Implemented Interfaces:
StateMachinePersister<S,E,T>
Direct Known Subclasses:
DefaultStateMachinePersister, RedisStateMachinePersister

public abstract class AbstractStateMachinePersister<S,E,T> extends Object implements StateMachinePersister<S,E,T>
Base implementation of a StateMachinePersister easing persist and restore operations with a StateMachinePersist.
  • Constructor Details

    • AbstractStateMachinePersister

      public AbstractStateMachinePersister(StateMachinePersist<S,E,T> stateMachinePersist)
      Instantiates a new abstract state machine persister.
      Parameters:
      stateMachinePersist - the state machine persist
  • Method Details