influxdb/command.go

15 lines
378 B
Go

package raft
//------------------------------------------------------------------------------
//
// Typedefs
//
//------------------------------------------------------------------------------
// A command represents an action to be taken on the replicated state machine.
type Command interface {
CommandName() string
Validate(server *Server) error
Apply(server *Server)
}