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,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the value provided with custom
options.
|
GetResult |
Collection.getAndTouch(String id,
Duration expiry,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the expiry provided with custom options.
|
GetResult |
Collection.getAndTouch(String id,
Instant expiry,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the expiry provided with custom 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,
GetAndTouchOptions options) |
Fetches a full document and resets its expiration time to the value provided with custom
options.
|