hamok
Version:
Lightweight Distributed Object Storage on RAFT consensus algorithm
13 lines • 746 B
TypeScript
export declare class EndpointStatesNotification {
readonly sourceEndpointId: string;
readonly destinationEndpointId: string;
readonly term: number;
readonly commitIndex: number;
readonly leaderNextIndex: number;
readonly numberOfLogs: number;
readonly activeEndpointIds?: ReadonlySet<string> | undefined;
readonly snapshot?: string | undefined;
readonly requestId?: string | undefined;
constructor(sourceEndpointId: string, destinationEndpointId: string, term: number, commitIndex: number, leaderNextIndex: number, numberOfLogs: number, activeEndpointIds?: ReadonlySet<string> | undefined, snapshot?: string | undefined, requestId?: string | undefined);
}
//# sourceMappingURL=EndpointNotification.d.ts.map