Package io.permazen.kv.raft.msg
Raft inter-node messages.
-
Interface Summary Interface Description MessageSwitch Visitor pattern interface forMessage
s. -
Class Summary Class Description AppendRequest Sent from leaders to followers to probe the follower's log state and/or append an entry to their log.AppendResponse Sent from a follower to a leader in response to anAppendRequest
.CommitRequest Sent from followers to leaders to start the commit of a transaction.CommitResponse Response to aCommitRequest
.GrantVote Sent from a follower to a candidate to grant a vote during an election.InstallSnapshot Sent from leader to follower to with a chunk of key/value pairs that will wholesale replace the follower's key/value store.Message Support superclass for Raft messages.PingRequest Sent from hermits to other nodes when trying to establish communication with a majority.PingResponse Response to aPingRequest
.RequestVote Send from candidates to other nodes to request a vote during an election.