fsm

package
v2.9.0-beta.1 Latest Latest
Warning

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

Go to latest
Published: Jun 21, 2022 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 = errors.New("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