fsm

package
v2.39.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 9, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Default StateType = ""
	NoOp    EventType = "NoOp"
)

Variables

View Source
var ErrEventRejected = fmt.Errorf("event rejected")

Functions

This section is empty.

Types

type Action

type Action interface {
	Execute(eventCtx EventContext) EventType
}

type EventContext

type EventContext interface{}

type EventType

type EventType string

type Events

type Events map[EventType]StateType

type State

type State struct {
	Action Action
	Events Events
}

type StateMachine

type StateMachine struct {
	Previous StateType
	Current  StateType
	States   States
	// contains filtered or unexported fields
}

func (*StateMachine) SendEvent

func (s *StateMachine) SendEvent(event EventType, eventCtx EventContext) error

type StateType

type StateType string

type States

type States map[StateType]State

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL