All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.documentdb.ConsistencyLevel Maven / Gradle / Ivy

/* 
 * Copyright (c) Microsoft Corporation.  All rights reserved.
 */

package com.microsoft.azure.documentdb;

/**
 * Represents the consistency levels supported for Azure Cosmos DB client operations in the Azure Cosmos DB database service.
 * 

* The requested ConsistencyLevel must match or be weaker than that provisioned for the database account. Consistency * levels by order of strength are Strong, BoundedStaleness, Session and Eventual. */ public enum ConsistencyLevel { /** * Strong Consistency guarantees that read operations always return the value that was last written. */ Strong, /** * Bounded Staleness guarantees that reads are not too out-of-date. This can be configured based on number of * operations (MaxStalenessPrefix) or time (MaxStalenessIntervalInSeconds) */ BoundedStaleness, /** * Session Consistency guarantees monotonic reads (you never read old data, then new, then old again), monotonic * writes (writes are ordered) and read your writes (your writes are immediately visible to your reads) within * any single session. */ Session, /** * Eventual Consistency guarantees that reads will return a subset of writes. All writes will be eventually be * available for reads. */ Eventual, /** * ConsistentPrefix Consistency guarantees that reads will return some prefix of all writes with no gaps. All writes * will be eventually be available for reads. */ ConsistentPrefix }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy