CompletableFuture<MutationResult> |
AsyncBinaryCollection.append(String id,
byte[] content) |
Appends binary content to the document.
|
CompletableFuture<MutationResult> |
AsyncBinaryCollection.append(String id,
byte[] content,
AppendOptions options) |
Appends binary content to the document with custom options.
|
Mono<MutationResult> |
ReactiveBinaryCollection.append(String id,
byte[] content) |
Appends binary content to the document.
|
Mono<MutationResult> |
ReactiveBinaryCollection.append(String id,
byte[] content,
AppendOptions options) |
Appends binary content to the document with custom options.
|
CompletableFuture<MutationResult> |
AsyncCollection.insert(String id,
Object content) |
Inserts a full document which does not exist yet with default options.
|
CompletableFuture<MutationResult> |
AsyncCollection.insert(String id,
Object content,
InsertOptions options) |
Inserts a full document which does not exist yet with custom options.
|
Mono<MutationResult> |
ReactiveCollection.insert(String id,
Object content) |
Inserts a full document which does not exist yet with default options.
|
Mono<MutationResult> |
ReactiveCollection.insert(String id,
Object content,
InsertOptions options) |
Inserts a full document which does not exist yet with custom options.
|
CompletableFuture<MutationResult> |
AsyncBinaryCollection.prepend(String id,
byte[] content) |
Prepends binary content to the document.
|
CompletableFuture<MutationResult> |
AsyncBinaryCollection.prepend(String id,
byte[] content,
PrependOptions options) |
Prepends binary content to the document with custom options.
|
Mono<MutationResult> |
ReactiveBinaryCollection.prepend(String id,
byte[] content) |
Prepends binary content to the document.
|
Mono<MutationResult> |
ReactiveBinaryCollection.prepend(String id,
byte[] content,
PrependOptions options) |
Prepends binary content to the document with custom options.
|
CompletableFuture<MutationResult> |
AsyncCollection.remove(String id) |
Removes a Document from a collection with default options.
|
CompletableFuture<MutationResult> |
AsyncCollection.remove(String id,
RemoveOptions options) |
Removes a Document from a collection with custom options.
|
Mono<MutationResult> |
ReactiveCollection.remove(String id) |
Removes a Document from a collection with default options.
|
Mono<MutationResult> |
ReactiveCollection.remove(String id,
RemoveOptions options) |
Removes a Document from a collection with custom options.
|
CompletableFuture<MutationResult> |
AsyncCollection.replace(String id,
Object content) |
Replaces a full document which already exists with default options.
|
CompletableFuture<MutationResult> |
AsyncCollection.replace(String id,
Object content,
ReplaceOptions options) |
Replaces a full document which already exists with custom options.
|
Mono<MutationResult> |
ReactiveCollection.replace(String id,
Object content) |
Replaces a full document which already exists with default options.
|
Mono<MutationResult> |
ReactiveCollection.replace(String id,
Object content,
ReplaceOptions options) |
Replaces a full document which already exists with custom options.
|
CompletableFuture<MutationResult> |
AsyncCollection.touch(String id,
Duration expiry) |
Updates the expiry of the document with the given id with default options.
|
CompletableFuture<MutationResult> |
AsyncCollection.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,
Duration expiry) |
Updates the expiry of the document with the given id with default options.
|
Mono<MutationResult> |
ReactiveCollection.touch(String id,
Duration expiry,
TouchOptions options) |
Updates the expiry of the document with the given id with custom options.
|
CompletableFuture<MutationResult> |
AsyncCollection.upsert(String id,
Object content) |
Upserts a full document which might or might not exist yet with default options.
|
CompletableFuture<MutationResult> |
AsyncCollection.upsert(String id,
Object content,
UpsertOptions options) |
Upserts a full document which might or might not exist yet with custom options.
|
Mono<MutationResult> |
ReactiveCollection.upsert(String id,
Object content) |
Upserts a full document which might or might not exist yet with default options.
|
Mono<MutationResult> |
ReactiveCollection.upsert(String id,
Object content,
UpsertOptions options) |
Upserts a full document which might or might not exist yet with custom options.
|