Uses of Class
com.couchbase.client.core.kv.CoreRangeScanItem
-
Packages that use CoreRangeScanItem Package Description com.couchbase.client.core.kv com.couchbase.client.core.msg.kv -
-
Uses of CoreRangeScanItem in com.couchbase.client.core.kv
Subclasses of CoreRangeScanItem in com.couchbase.client.core.kv Modifier and Type Class Description class
LastCoreRangeScanItem
Methods in com.couchbase.client.core.kv that return CoreRangeScanItem Modifier and Type Method Description static CoreRangeScanItem
CoreRangeScanItem. keyAndBody(int flags, Instant expiry, long seqno, long cas, byte[] key, byte[] value)
static CoreRangeScanItem
CoreRangeScanItem. keyOnly(byte[] key)
Methods in com.couchbase.client.core.kv that return types with arguments of type CoreRangeScanItem Modifier and Type Method Description Flux<CoreRangeScanItem>
RangeScanOrchestrator. rangeScan(byte[] startTerm, boolean startExclusive, byte[] endTerm, boolean endExclusive, Duration timeout, int continueItemLimit, int continueByteLimit, boolean keysOnly, CoreRangeScanSort sort, Optional<RequestSpan> parent, Map<Short,MutationToken> consistencyTokens)
Performs a range scan between a start and an end term (reactive).Flux<CoreRangeScanItem>
RangeScanOrchestrator. samplingScan(long limit, Optional<Long> seed, Duration timeout, int continueItemLimit, int continueByteLimit, boolean keysOnly, CoreRangeScanSort sort, Optional<RequestSpan> parent, Map<Short,MutationToken> consistencyTokens)
Performs a sampling scan (reactive). -
Uses of CoreRangeScanItem in com.couchbase.client.core.msg.kv
Methods in com.couchbase.client.core.msg.kv that return types with arguments of type CoreRangeScanItem Modifier and Type Method Description Flux<CoreRangeScanItem>
RangeScanContinueResponse. items()
Method parameters in com.couchbase.client.core.msg.kv with type arguments of type CoreRangeScanItem Modifier and Type Method Description void
RangeScanContinueResponse. feedItems(List<CoreRangeScanItem> items, boolean signalLastItem, boolean completeFeed)
Method used in testing to feed items directly.Constructor parameters in com.couchbase.client.core.msg.kv with type arguments of type CoreRangeScanItem Constructor Description RangeScanContinueRequest(CoreRangeScanId id, int itemLimit, int byteLimit, Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, String key, CollectionIdentifier collectionIdentifier, RequestSpan span, Sinks.Many<CoreRangeScanItem> sink, short partition, boolean keysOnly)
RangeScanContinueResponse(ResponseStatus status, Sinks.Many<CoreRangeScanItem> items, boolean keysOnly)
-