CompletableFuture<GetResult> |
AsyncCollection.get(String id) |
Fetches a full document (or a projection of it) from a collection with default options.
|
CompletableFuture<GetResult> |
AsyncCollection.get(String id,
GetOptions options) |
Fetches a full document (or a projection of it) from a collection with custom options.
|
Mono<GetResult> |
ReactiveCollection.get(String id) |
Fetches a Document from a collection with default options.
|
Mono<GetResult> |
ReactiveCollection.get(String id,
GetOptions options) |
Fetches a Document from a collection with custom options.
|
CompletableFuture<GetResult> |
AsyncCollection.getAndLock(String id,
Duration lockTime) |
Fetches a full document and write-locks it for the given duration with default options.
|
CompletableFuture<GetResult> |
AsyncCollection.getAndLock(String id,
Duration lockTime,
GetAndLockOptions options) |
Fetches a full document and write-locks it for the given duration with custom options.
|
Mono<GetResult> |
ReactiveCollection.getAndLock(String id,
Duration lockTime) |
Fetches a full document and write-locks it for the given duration with default options.
|
Mono<GetResult> |
ReactiveCollection.getAndLock(String id,
Duration lockTime,
GetAndLockOptions options) |
Fetches a full document and write-locks it for the given duration with custom options.
|
CompletableFuture<GetResult> |
AsyncCollection.getAndTouch(String id,
Duration expiry) |
Fetches a full document and resets its expiration time to the value provided with default
options.
|
CompletableFuture<GetResult> |
AsyncCollection.getAndTouch(String id,
Duration expiry,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the value provided with custom
options.
|
CompletableFuture<GetResult> |
AsyncCollection.getAndTouch(String id,
Instant expiry) |
Fetches a full document and resets its expiration time to the value provided with default
options.
|
CompletableFuture<GetResult> |
AsyncCollection.getAndTouch(String id,
Instant expiry,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the value provided with custom
options.
|
Mono<GetResult> |
ReactiveCollection.getAndTouch(String id,
Duration expiry) |
Fetches a full document and resets its expiration time to the value provided with default
options.
|
Mono<GetResult> |
ReactiveCollection.getAndTouch(String id,
Duration expiry,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the value provided with custom
options.
|
Mono<GetResult> |
ReactiveCollection.getAndTouch(String id,
Instant expiry) |
Fetches a full document and resets its expiration time to the value provided with default
options.
|
Mono<GetResult> |
ReactiveCollection.getAndTouch(String id,
Instant expiry,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the value provided with custom
options.
|