package states

Import Path
	github.com/pancsta/asyncmachine-go/tools/visualizer/states (on go.dev)

Dependency Relation
	imports 4 packages, and imported by 2 packages

Involved Source Files Package states contains a stateful schema-v2 for Visualizer. Bootstrapped with am-gen. Edit manually or re-gen & merge.
Package-Level Type Names (total 2)
/* sort by: | */
VisualizerGroupsDef contains all the state groups Visualizer state machine. var VisualizerGroups
VisualizerStatesDef contains all the states of the Visualizer state machine. inherit from BasicStatesDef ErrHandlerTimeout indicates one of the state machine handlers has timed out. ErrNetwork indicates a generic network error. Healthcheck is a periodic request making sure that the machine is still alive. Heartbeat is a periodic state that ensures the integrity of the machine. Ready indicates the machine meets criteria to perform work. Start indicates the machine should be working. Removing start can force stop the machine. inherit from DisposedStatesDef Disposed indicates that the machine has disposed allocated resoruces and is ready to be garbage collected by calling [am.Machine.Dispose]. Disposing indicates that the machine is during the disposal process. RegisterDisposal registers a disposal handler passed under the DisposedArgHandler key. inherit from [ssdbg.ServerStatesDef] ServerStatesDef.ClientMsg string ServerStatesDef.ConnectEvent string ServerStatesDef.DisconnectEvent string ServerStatesDef.InitClient string StatesBase *am.StatesBase Exception is the only built-in state and mean a global error. All errors have to [State.Require] the Exception state. If [Machine.PanicToErr] is true, Exception will receive it. ( VisualizerStatesDef) Names() machine.S ( VisualizerStatesDef) SetNames(names machine.S) ( VisualizerStatesDef) SetStateGroups(groups map[string][]int, order []string) ( VisualizerStatesDef) StateGroups() (map[string][]int, []string) VisualizerStatesDef : github.com/pancsta/asyncmachine-go/pkg/machine.States var VisualizerStates
Package-Level Variables (total 3)
VisualizerGroups contains all the state groups for the Visualizer machine.
VisualizerSchema represents all relations and properties of VisualizerStates.
VisualizerStates contains all the states for the Visualizer machine.