| 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.
|
| Modifier and Type | Method and Description |
|---|---|
Stream<ScanResult> |
Collection.scan(ScanType scanType)
Returns a stream of
ScanResults performing a Key-Value range scan with default options. |
Flux<ScanResult> |
ReactiveCollection.scan(ScanType scanType)
Returns a stream of
ScanResults performing a Key-Value range scan with default options. |
CompletableFuture<List<ScanResult>> |
AsyncCollection.scan(ScanType scanType)
Returns a stream of
ScanResults performing a Key-Value range scan with default options. |
Stream<ScanResult> |
Collection.scan(ScanType scanType,
ScanOptions options)
Returns a stream of
ScanResults performing a Key-Value range scan with custom options. |
Flux<ScanResult> |
ReactiveCollection.scan(ScanType scanType,
ScanOptions options)
Returns a stream of
ScanResults performing a Key-Value range scan with custom options. |
CompletableFuture<List<ScanResult>> |
AsyncCollection.scan(ScanType scanType,
ScanOptions options)
Returns a stream of
ScanResults performing a Key-Value range scan with custom options. |
| Modifier and Type | Class and Description |
|---|---|
class |
PrefixScan
Performs a KV range scan for documents whose IDs start with a certain prefix.
|
class |
RangeScan
Performs a KV range scan to scan between two
ScanTerms. |
class |
SamplingScan
Performs a KV range scan using random sampling.
|
Copyright © 2024 Couchbase, Inc.. All rights reserved.