Uses of Class
com.couchbase.client.java.kv.ScanOptions
-
Packages that use ScanOptions Package Description com.couchbase.client.java Holds all classes that are needed for the Couchbase Java SDK.com.couchbase.client.java.kv Namespace for various kv-service related classes. -
-
Uses of ScanOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type ScanOptions Modifier and Type Method Description CompletableFuture<List<ScanResult>>AsyncCollection. scan(ScanType scanType, ScanOptions options)Returns a stream ofScanResultsperforming a Key-Value range scan with custom options.Stream<ScanResult>Collection. scan(ScanType scanType, ScanOptions options)Returns a stream ofScanResultsperforming a Key-Value range scan with custom options.Flux<ScanResult>ReactiveCollection. scan(ScanType scanType, ScanOptions options)Returns a stream ofScanResultsperforming a Key-Value range scan with custom options. -
Uses of ScanOptions in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return ScanOptions Modifier and Type Method Description ScanOptionsScanOptions. batchByteLimit(int batchByteLimit)Allows to limit the maximum amount of bytes that are sent from the server to the client on each partition batch.ScanOptionsScanOptions. batchItemLimit(int batchItemLimit)Allows to limit the maximum amount of documents that are sent from the server to the client on each partition batch.ScanOptionsScanOptions. consistentWith(MutationState mutationState)ScanOptionsScanOptions. idsOnly(boolean idsOnly)If set to true, the content of the document is not included in the results.static ScanOptionsScanOptions. scanOptions()ScanOptionsScanOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to decode the content of the result.
-