CompletableFuture<MutationResult> |
AsyncCollection.touch(String id,
Duration expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|
CompletableFuture<MutationResult> |
AsyncCollection.touch(String id,
Instant expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|
MutationResult |
Collection.touch(String id,
Duration expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|
MutationResult |
Collection.touch(String id,
Instant expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|
Mono<MutationResult> |
ReactiveCollection.touch(String id,
Duration expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|
Mono<MutationResult> |
ReactiveCollection.touch(String id,
Instant expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|