pub struct StateMachineFactory<S, E, C>{
pub(crate) machines: HashMap<String, StateMachine<S, E, C>>,
}Expand description
Factory for managing multiple state machines
Fields§
§machines: HashMap<String, StateMachine<S, E, C>>pub struct StateMachineFactory<S, E, C>{
pub(crate) machines: HashMap<String, StateMachine<S, E, C>>,
}Factory for managing multiple state machines
machines: HashMap<String, StateMachine<S, E, C>>