influxdb/_vendor/raft/statemachine.go

10 lines
269 B
Go
Raw Normal View History

2014-03-25 15:42:18 +00:00
package raft
// StateMachine is the interface for allowing the host application to save and
// recovery the state machine. This makes it possible to make snapshots
// and compact the log.
type StateMachine interface {
Save() ([]byte, error)
Recovery([]byte) error
}