Interface ReactiveRangeScanOperation.RangeScanConsistentWith<T>
- Type Parameters:
T- the entity type to use for the results.
- All Superinterfaces:
ConsistentWith<T>, InCollection<T>, InScope<T>, ReactiveRangeScanOperation.RangeScanInCollection<T>, ReactiveRangeScanOperation.RangeScanInScope<T>, ReactiveRangeScanOperation.RangeScanWithOptions<T>, ReactiveRangeScanOperation.RangeScanWithSort<T>, ReactiveRangeScanOperation.TerminatingRangeScan<T>, WithScanOptions<T>, WithScanSort<T>
- All Known Subinterfaces:
ReactiveRangeScanOperation.RangeScanWithBatchByteLimit<T>, ReactiveRangeScanOperation.RangeScanWithBatchItemLimit<T>, ReactiveRangeScanOperation.RangeScanWithProjection<T>, ReactiveRangeScanOperation.ReactiveRangeScan<T>
- Enclosing interface:
ReactiveRangeScanOperation
public static interface ReactiveRangeScanOperation.RangeScanConsistentWith<T>
extends ReactiveRangeScanOperation.RangeScanWithSort<T>, ConsistentWith<T>
Fluent method to specify scan consistency. Scan consistency may also come from an annotation.
- Since:
- 2.0
- Author:
- Christoph Strobl
-
Method Summary
Modifier and TypeMethodDescriptionconsistentWith(com.couchbase.client.java.kv.MutationState mutationState) Allows to override the default scan consistency.Methods inherited from interface ReactiveRangeScanOperation.RangeScanInCollection
inCollectionMethods inherited from interface ReactiveRangeScanOperation.RangeScanInScope
inScopeMethods inherited from interface ReactiveRangeScanOperation.RangeScanWithOptions
withOptionsMethods inherited from interface ReactiveRangeScanOperation.RangeScanWithSort
withSortMethods inherited from interface ReactiveRangeScanOperation.TerminatingRangeScan
rangeScan, rangeScanIds, sampleScan, sampleScanIds
-
Method Details
-
consistentWith
ReactiveRangeScanOperation.RangeScanWithSort<T> consistentWith(com.couchbase.client.java.kv.MutationState mutationState) Allows to override the default scan consistency.- Specified by:
consistentWithin interfaceConsistentWith<T>- Parameters:
mutationState- the custom scan consistency to use for this query.
-