Raft Consensus Algorithm
    Preparing search index...

    Interface NodeStorage

    interface NodeStorage {
        config: ConfigStorage;
        log: LogStorage;
        meta: MetaStorage;
        snapshot: SnapshotStorage;
        close(): Promise<void>;
        isOpen(): boolean;
        open(): Promise<void>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    snapshot: SnapshotStorage

    Methods