hazelcast-client
Version:
Hazelcast - open source In-Memory Data Grid - client for NodeJS
14 lines (13 loc) • 556 B
TypeScript
/// <reference types="long" />
import { DataInput, DataOutput } from '../serialization/Data';
import { IdentifiedDataSerializable } from '../serialization/Serializable';
export declare class VectorClock implements IdentifiedDataSerializable {
private replicaTimestamps;
isAfter(other: VectorClock): boolean;
setReplicaTimestamp(replicaId: string, timestamp: Long): void;
entrySet(): Array<[string, Long]>;
readData(input: DataInput): any;
writeData(output: DataOutput): void;
getFactoryId(): number;
getClassId(): number;
}