Uses of Interface
io.atomix.raft.storage.log.IndexedRaftLogEntry
Packages that use IndexedRaftLogEntry
Package
Description
Provides classes and interfaces for managing Raft clients and servers.
Implementations of Raft cluster management interfaces.
Implementations of core Raft server interfaces.
Provides a standalone segmented log for use in the Raft consensus protocol implementation.
-
Uses of IndexedRaftLogEntry in io.atomix.raft
Methods in io.atomix.raft with parameters of type IndexedRaftLogEntryModifier and TypeMethodDescriptionvoidRaftCommittedEntryListener.onCommit(IndexedRaftLogEntry indexedRaftLogEntry) -
Uses of IndexedRaftLogEntry in io.atomix.raft.cluster.impl
Methods in io.atomix.raft.cluster.impl that return IndexedRaftLogEntryModifier and TypeMethodDescriptionRaftMemberContext.getCurrentEntry()RaftMemberContext.nextEntry() -
Uses of IndexedRaftLogEntry in io.atomix.raft.impl
Methods in io.atomix.raft.impl with parameters of type IndexedRaftLogEntryModifier and TypeMethodDescriptionvoidRaftContext.notifyCommittedEntryListeners(IndexedRaftLogEntry committedEntry) Notifies all listeners of the latest entry. -
Uses of IndexedRaftLogEntry in io.atomix.raft.storage.log
Methods in io.atomix.raft.storage.log that return IndexedRaftLogEntryModifier and TypeMethodDescriptionRaftLog.append(PersistedRaftRecord entry) RaftLog.append(RaftLogEntry entry) RaftLog.getLastEntry()RaftLogCommittedReader.next()RaftLogUncommittedReader.next() -
Uses of IndexedRaftLogEntry in io.atomix.raft.zeebe
Methods in io.atomix.raft.zeebe with parameters of type IndexedRaftLogEntryModifier and TypeMethodDescriptiondefault voidZeebeLogAppender.AppendListener.onCommit(IndexedRaftLogEntry indexed) Called when the entry has been committed.default voidZeebeLogAppender.AppendListener.onCommitError(IndexedRaftLogEntry indexed, Throwable error) Called when an error occurred while replicating or committing an entry, typically when if an append operation was pending when shutting down the server or stepping down as leader.default voidZeebeLogAppender.AppendListener.onWrite(IndexedRaftLogEntry indexed) Called when the entry has been written to the log.