Raft Consensus Algorithm
    Preparing search index...
    interface LogEntry {
        command?: Command;
        config?: ClusterConfig;
        index: number;
        term: number;
        type: LogEntryType;
    }
    Index

    Properties

    command?: Command
    config?: ClusterConfig
    index: number
    term: number