Interface ClusterTime

Gossiped in component for the cluster time tracking the state of user databases across the cluster. It may optionally include a signature identifying the process that generated such a value.

interface ClusterTime {
    clusterTime: Timestamp;
    signature?: {
        hash: Binary;
        keyId: Long;
    };
}

Properties

clusterTime: Timestamp
signature?: {
    hash: Binary;
    keyId: Long;
}

Used to validate the identity of a request or response's ClusterTime.