Uses of Interface
io.microraft.model.log.LogEntry
-
Packages that use LogEntry Package Description io.microraft.model.log io.microraft.model.message io.microraft.persistence -
-
Uses of LogEntry in io.microraft.model.log
Methods in io.microraft.model.log that return LogEntry Modifier and Type Method Description LogEntry
LogEntry.LogEntryBuilder. build()
-
Uses of LogEntry in io.microraft.model.message
Methods in io.microraft.model.message that return types with arguments of type LogEntry Modifier and Type Method Description List<LogEntry>
AppendEntriesRequest. getLogEntries()
Method parameters in io.microraft.model.message with type arguments of type LogEntry Modifier and Type Method Description AppendEntriesRequest.AppendEntriesRequestBuilder
AppendEntriesRequest.AppendEntriesRequestBuilder. setLogEntries(List<LogEntry> logEntries)
-
Uses of LogEntry in io.microraft.persistence
Methods in io.microraft.persistence that return types with arguments of type LogEntry Modifier and Type Method Description List<LogEntry>
RestoredRaftState. getLogEntries()
Methods in io.microraft.persistence with parameters of type LogEntry Modifier and Type Method Description void
NopRaftStore. persistLogEntry(LogEntry logEntry)
void
RaftStore. persistLogEntry(LogEntry logEntry)
Persists the given log entry.Constructor parameters in io.microraft.persistence with type arguments of type LogEntry Constructor Description RestoredRaftState(RaftEndpoint localEndpoint, boolean localEndpointVoting, RaftGroupMembersView initialGroupMembers, int term, RaftEndpoint votedMember, SnapshotEntry snapshotEntry, List<LogEntry> entries)
-