StateTransitor.Cell

Cell of table

struct StateTransitor(StateType, EventType, StateType defaultStateParameter = StateType.init, ProcHandler = void delegate()[], ExceptionHandler = void delegate(Exception)[], EventHandler = void delegate(EventType)[], StateChangedHandler = void delegate(StateType newSts, StateType oldSts)[], ConsumeMode consumeMode = ConsumeMode.combined, EventContainer = SList!EventType)
static
struct Cell {}

Constructors

this
this(State s, ProcHandler h)
this(State s, Func h)

Constructor

Members

Variables

handler
ProcHandler handler;

handler

nextState
State nextState;

next state

Meta