Source File
ss_visualizer.go
Belonging Package
github.com/pancsta/asyncmachine-go/tools/visualizer/states
// Package states contains a stateful schema-v2 for Visualizer.// Bootstrapped with am-gen. Edit manually or re-gen & merge.package statesimport (amss.ssdbg)// VisualizerStatesDef contains all the states of the Visualizer state machine.type VisualizerStatesDef struct {*am.StatesBase// inherit from BasicStatesDef*ss.BasicStatesDef// inherit from DisposedStatesDef*ss.DisposedStatesDef// inherit from [ssdbg.ServerStatesDef]*ssdbg.ServerStatesDef}// VisualizerGroupsDef contains all the state groups Visualizer state machine.type VisualizerGroupsDef struct {}// VisualizerSchema represents all relations and properties of VisualizerStates.var VisualizerSchema = SchemaMerge(// inherit from BasicStructss.BasicSchema,// inherit from DisposedStructss.DisposedSchema,// inherit from ServerSchemassdbg.ServerSchema,am.Schema{// TODO own states})// EXPORTS AND GROUPSvar (ssV = am.NewStates(VisualizerStatesDef{})sgV = am.NewStateGroups(VisualizerGroupsDef{})// VisualizerStates contains all the states for the Visualizer machine.VisualizerStates = ssV// VisualizerGroups contains all the state groups for the Visualizer machine.VisualizerGroups = sgV)
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |