CompletableFuture<List<ScanResult>> |
AsyncCollection.scan(ScanType scanType) |
Returns a stream of ScanResults performing a Key-Value range scan with default options.
|
CompletableFuture<List<ScanResult>> |
AsyncCollection.scan(ScanType scanType,
ScanOptions options) |
Returns a stream of ScanResults performing a Key-Value range scan with custom options.
|
Stream<ScanResult> |
Collection.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) |
Returns a stream of ScanResults performing a Key-Value range scan with default options.
|
Flux<ScanResult> |
ReactiveCollection.scan(ScanType scanType,
ScanOptions options) |
Returns a stream of ScanResults performing a Key-Value range scan with custom options.
|