CompletableFuture<Optional<ExistsResult>> |
AsyncCollection.exists(String id) |
Checks if the given document ID exists on the active partition with default options.
|
CompletableFuture<Optional<ExistsResult>> |
AsyncCollection.exists(String id,
ExistsOptions options) |
Checks if the given document ID exists on the active partition with custom options.
|
Optional<ExistsResult> |
Collection.exists(String id) |
Checks if the given document ID exists on the active partition with default options.
|
Optional<ExistsResult> |
Collection.exists(String id,
ExistsOptions options) |
Checks if the given document ID exists on the active partition with custom options.
|
Mono<ExistsResult> |
ReactiveCollection.exists(String id) |
Checks if the given document ID exists on the active partition with default options.
|
Mono<ExistsResult> |
ReactiveCollection.exists(String id,
ExistsOptions options) |
Checks if the given document ID exists on the active partition with custom options.
|