CompletableFuture<LookupInResult> |
AsyncCollection.lookupIn(String id,
List<LookupInSpec> specs) |
Performs lookups to document fragments with default options.
|
CompletableFuture<LookupInResult> |
AsyncCollection.lookupIn(String id,
List<LookupInSpec> specs,
LookupInOptions options) |
Performs lookups to document fragments with custom options.
|
LookupInResult |
Collection.lookupIn(String id,
List<LookupInSpec> specs) |
Performs lookups to document fragments with default options.
|
LookupInResult |
Collection.lookupIn(String id,
List<LookupInSpec> specs,
LookupInOptions options) |
Performs lookups to document fragments with custom options.
|
Mono<LookupInResult> |
ReactiveCollection.lookupIn(String id,
List<LookupInSpec> specs) |
Performs lookups to document fragments with default options.
|
Mono<LookupInResult> |
ReactiveCollection.lookupIn(String id,
List<LookupInSpec> specs,
LookupInOptions options) |
Performs lookups to document fragments with custom options.
|
CompletableFuture<List<CompletableFuture<LookupInReplicaResult>>> |
AsyncCollection.lookupInAllReplicas(String id,
List<LookupInSpec> specs) |
Reads from replicas or the active node based on the options and returns the results as a list
of futures that might complete or fail.
|
CompletableFuture<List<CompletableFuture<LookupInReplicaResult>>> |
AsyncCollection.lookupInAllReplicas(String id,
List<LookupInSpec> specs,
LookupInAllReplicasOptions options) |
Reads from replicas or the active node based on the options and returns the results as a list
of futures that might complete or fail.
|
Stream<LookupInReplicaResult> |
Collection.lookupInAllReplicas(String id,
List<LookupInSpec> lookupInSpecs) |
Reads from all available replicas and the active node and returns the results as a stream.
|
Stream<LookupInReplicaResult> |
Collection.lookupInAllReplicas(String id,
List<LookupInSpec> lookupInSpecs,
LookupInAllReplicasOptions options) |
Reads all available or one replica and returns the results as a stream with custom options.
|
Flux<LookupInReplicaResult> |
ReactiveCollection.lookupInAllReplicas(String id,
List<LookupInSpec> lookupInSpecs) |
Reads all available replicas, including the active, and returns the results as a flux.
|
Flux<LookupInReplicaResult> |
ReactiveCollection.lookupInAllReplicas(String id,
List<LookupInSpec> lookupInSpecs,
LookupInAllReplicasOptions options) |
Reads all available replicas, including the active, and returns the results as a flux.
|
CompletableFuture<LookupInReplicaResult> |
AsyncCollection.lookupInAnyReplica(String id,
List<LookupInSpec> specs) |
Reads all available replicas, and returns the first found.
|
CompletableFuture<LookupInReplicaResult> |
AsyncCollection.lookupInAnyReplica(String id,
List<LookupInSpec> specs,
LookupInAnyReplicaOptions options) |
Reads all available replicas, and returns the first found.
|
LookupInReplicaResult |
Collection.lookupInAnyReplica(String id,
List<LookupInSpec> lookupInSpecs) |
Reads all available replicas, and returns the first found.
|
LookupInReplicaResult |
Collection.lookupInAnyReplica(String id,
List<LookupInSpec> lookupInSpecs,
LookupInAnyReplicaOptions options) |
Reads all available replicas, and returns the first found with custom options.
|
Mono<LookupInReplicaResult> |
ReactiveCollection.lookupInAnyReplica(String id,
List<LookupInSpec> lookupInSpecs) |
Reads all available replicas, and returns the first found.
|
Mono<LookupInReplicaResult> |
ReactiveCollection.lookupInAnyReplica(String id,
List<LookupInSpec> lookupInSpecs,
LookupInAnyReplicaOptions options) |
Reads all available replicas, and returns the first found.
|