ConsistencyLevel Enum
- java.
lang. Object - java.
lang. Enum - com.
microsoft. azure. documentdb. ConsistencyLevel
- com.
- java.
public enum ConsistencyLevel
extends java.lang.Enum<ConsistencyLevel>
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.
Fields
BoundedStaleness |
Bounded Staleness guarantees that reads are not too out-of-date. |
ConsistentPrefix |
Consistent |
Eventual |
Eventual Consistency guarantees that reads will return a subset of writes. |
Session |
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. |
Strong |
Strong Consistency guarantees that read operations always return the value that was last written. |
Methods inherited from java.lang.Enum
Methods inherited from java.lang.Object
Methods
valueOf(String name)
public static ConsistencyLevel valueOf(String name)
Parameters
- name
- java.lang.String
Returns
values()
Applies to
Azure SDK for Java