Types related to Raft log storage.
Raft requires a backing storage for entries of its distributed log as they are being replicated to and from other nodes. The RaftLog trait is implemented for that purpose, and the implementation is supplied to RaftNode.
RaftLog
RaftNode
A naive in-memory implementation of RaftLog, primarily for testing.
An iterator yielding committed log entries.
An interface for storage of the Raft log of a RaftNode.