Interface | Description |
---|---|
PaxosMessage.Acceptance | |
PaxosMessage.AcceptResponse | |
PaxosMessage.Denial | |
PaxosMessage.ProposeResponse | |
PaxosMessage.Request |
Class | Description |
---|---|
AcceptDenial |
A negative response to an accept request, voting that the proposed value not
be accepted by the cluster.
|
Accepted |
A positive response to an accept request, voting that the proposed value be
accepted by the cluster.
|
AcceptRequest<E extends PaxosCommand> |
A request for the cluster to accept a particular command in some command
slot.
|
CommandMessage<E extends PaxosCommand> |
A PaxosMessage which contains a command.
|
LearnedCommand<E extends PaxosCommand> |
This message asserts that a command slot has already been filled by
successful completion of a round of Paxos.
|
PaxosMessage |
A message sent within the Paxos framework
|
Promise<E extends PaxosCommand> |
A promise to another node not to accept any proposal numbers lower than what
has just been received
|
Proposal |
An announcement to the Paxos cluster that a node would like to try to become
leader.
|
ProposeDenial |
A denial of a proposal, voting that the proposing node not be elected leader.
|