Interface ClientSessionOptions

interface ClientSessionOptions {
    causalConsistency?: boolean;
    defaultTransactionOptions?: TransactionOptions;
    snapshot?: boolean;
}

Properties

causalConsistency?: boolean

Whether causal consistency should be enabled on this session

defaultTransactionOptions?: TransactionOptions

The default TransactionOptions to use for transactions started on this session.

snapshot?: boolean

Whether all read operations should be read from the same snapshot for this session (NOTE: not compatible with causalConsistency=true)