Interface LogEntry

All Superinterfaces:
EntryMeta
All Known Subinterfaces:
ReplicatedLogEntry
All Known Implementing Classes:
DefaultLogEntry, SimpleReplicatedLogEntry

@NonNullByDefault public interface LogEntry extends EntryMeta
A single entry in the RAFT log. It is composed of EntryMeta fields and a command(), mandated by the RAFT paper: each entry contains command for state machine, and term when entry was received by leader (first index is 1).