machine/model.go
Matthew Rich 8b92e9e143
Some checks failed
Machine Tests / test (push) Waiting to run
Lint / golangci-lint (push) Has been cancelled
fix lint errors
2024-04-04 13:06:45 -07:00

32 lines
598 B
Go

// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package machine
type Modeler interface {
Trigger(transition Transitioner) error
ChangeState(target State) State
InspectState() State
}
type Model struct {
state State
}
func NewModel(initial State) Modeler {
return &Model{ state: initial }
}
func (m *Model) Trigger(transition Transitioner) error {
return transition.Run(m)
}
func (m *Model) ChangeState(target State) State {
oldState := m.state
m.state = target
return oldState
}
func (m *Model) InspectState() State {
return m.state
}