API Reference
This document contain description of the low-level API to define and execute process.
FsmProcess
Callbacks
Note: All callback methods return a function unregistering the callback.
onStateCreate(handler: (state: FsmState) => void)
- registers a function called each time when a new state is created. This method should use theFsmState#onEnter
/FsmState#onExit
methods to activate / deactivate states. This method could be called multiple times to register various state handlers.onStateError(handler: (state: FsmState, error: unknown) => void | Promise<void>)
- registers an error handler; this handler is called each time when state activation/deactivation code rises error
FsmProcess
Methods
async dispatch(event: string): Promise<boolean>
– dispatches the specified event and triggers state transitions in this processasync dump(...args: unknown[]): Promise<FsmProcessDump>
- creates a dump of this process; a new process could be restored in the current state using thèFsmProcess#restore(...)
method.async restore(dump: FsmProcessDump, ...args: unknown[]): Promise<void>
- restores the process using the dumped data. Note that the process should not be started yet.async shutdown(event?: string): Promise<void>
- shutdowns the running process with an optional exit event
FsmState
Callbacks
onEnter(callback: () => void | Promise<void>)
- registers a callback function used to activate this state. It could be an asynchronious callback - the process will wait until all registered state handlers are resolved.onExit(callback: () => void | Promise<void>)
- registers a function to call when the process leaves this state. The process waits until all state handlers return control.onStateError(handler: FsmStateErrorHandler)
- registers an error handler; this handler is called whenonEnter
oronExit
methods rise an error;dump(handler: (state: FsmState, dump: Record<string, unknown>) => void | Promise<void>)
- registers a handler to call when process dumps its internal current state; the handler recieves the state to dump and an object where the internal data should be copiedrestore(handler: (state: FsmState, dump: Record<string, unknown>) => void | Promise<void>)
- registers a handler restoring the current state; the handler recieves the restored state and an object containing dumped information
FsmState
Methods
getData<T>(key: string, recursive: boolean = true): T | undefined
- returns a site-specific data object associated with the specified string key; if this method can not find information associated with the given key then it recursively searches the data in parents states.useData<T>(key: string): [ (recursive: boolean = true) => this.getData<T>(key, recursive), (value: T) => this.setData(key, value)]
returns a pair of methods allowing to get and set data in the current state