Interface ExecutableRangeScanOperation.RangeScanConsistentWith<T>
- Type Parameters:
T
- the entity type to use for the results.
- All Superinterfaces:
ConsistentWith<T>
,ExecutableRangeScanOperation.RangeScanInCollection<T>
,ExecutableRangeScanOperation.RangeScanInScope<T>
,ExecutableRangeScanOperation.RangeScanWithOptions<T>
,ExecutableRangeScanOperation.RangeScanWithSort<T>
,ExecutableRangeScanOperation.TerminatingRangeScan<T>
,InCollection<T>
,InScope<T>
,WithScanOptions<T>
,WithScanSort<T>
- All Known Subinterfaces:
ExecutableRangeScanOperation.ExecutableRangeScan<T>
,ExecutableRangeScanOperation.RangeScanWithBatchByteLimit<T>
,ExecutableRangeScanOperation.RangeScanWithBatchItemLimit<T>
,ExecutableRangeScanOperation.RangeScanWithProjection<T>
- Enclosing interface:
- ExecutableRangeScanOperation
public static interface ExecutableRangeScanOperation.RangeScanConsistentWith<T>
extends ExecutableRangeScanOperation.RangeScanWithSort<T>, ConsistentWith<T>
Fluent method to specify scan consistency. Scan consistency may also come from an annotation.
-
Method Summary
Modifier and TypeMethodDescriptionconsistentWith
(com.couchbase.client.java.kv.MutationState mutationState) Allows to override the default scan consistency.Methods inherited from interface org.springframework.data.couchbase.core.ExecutableRangeScanOperation.RangeScanInCollection
inCollection
Methods inherited from interface org.springframework.data.couchbase.core.ExecutableRangeScanOperation.RangeScanInScope
inScope
Methods inherited from interface org.springframework.data.couchbase.core.ExecutableRangeScanOperation.RangeScanWithOptions
withOptions
Methods inherited from interface org.springframework.data.couchbase.core.ExecutableRangeScanOperation.RangeScanWithSort
withSort
Methods inherited from interface org.springframework.data.couchbase.core.ExecutableRangeScanOperation.TerminatingRangeScan
rangeScan, rangeScanIds, samplingScan, samplingScanIds
-
Method Details
-
consistentWith
ExecutableRangeScanOperation.RangeScanWithSort<T> consistentWith(com.couchbase.client.java.kv.MutationState mutationState) Allows to override the default scan consistency.- Specified by:
consistentWith
in interfaceConsistentWith<T>
- Parameters:
mutationState
- the custom scan consistency to use for this query.
-