public static interface EloquentRaftProto.AppendEntriesReplyOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getFollowerName()
The name of the follower that sent this reply.
|
com.google.protobuf.ByteString |
getFollowerNameBytes()
The name of the follower that sent this reply.
|
boolean |
getMissingFromQuorum()
NOT STANDARD RAFT: If true, this node is not in the quorum, and should perhaps be.
|
long |
getNextIndex()
The last index replicated on this server.
|
boolean |
getSuccess()
true if the follower contained an entry matching prevLogIndex and prevLogTerm
|
long |
getTerm()
currentTerm, for the leader to update itself
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneoflong getTerm()
currentTerm, for the leader to update itself
uint64 term = 1;boolean getSuccess()
true if the follower contained an entry matching prevLogIndex and prevLogTerm
bool success = 2;long getNextIndex()
The last index replicated on this server. Serves to both signal replication, and ask for logs starting at a given index.
uint64 nextIndex = 3;java.lang.String getFollowerName()
The name of the follower that sent this reply.
string followerName = 4;com.google.protobuf.ByteString getFollowerNameBytes()
The name of the follower that sent this reply.
string followerName = 4;boolean getMissingFromQuorum()
NOT STANDARD RAFT: If true, this node is not in the quorum, and should perhaps be.
bool missingFromQuorum = 5;