QueryScanConsistency enum Query

The various scan consistency options that are available when querying against the query service.

Inheritance

Constructors

QueryScanConsistency()
const

Values

notBounded → const QueryScanConsistency

No specific consistency is required.

This is the fastest options, but results may not include the most recent operations which have been performed.

requestPlus → const QueryScanConsistency

The results of the query should include all operations that have occurred up until the query was started.

This incurs a performance penalty of waiting for the index to catch up to the most recent operations, but provides the highest level of consistency.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<QueryScanConsistency>
A constant List of the values in this enum, in order of their declaration.