李度、马也驰 25spring数据库系统 p1仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
271 B

package nodes
const (
Normal State = iota + 1
Delay
Fail
)
type LogEntry struct {
Key string
Value string
}
type LogEntryCall struct {
LogE LogEntry
CallState State
}
type KVReply struct {
Reply bool
}
type LogIdAndEntry struct {
LogId int
Entry LogEntry
}