CompletableFuture<CounterResult> |
AsyncBinaryCollection.decrement(String id) |
Decrements the counter document by one.
|
CompletableFuture<CounterResult> |
AsyncBinaryCollection.decrement(String id,
DecrementOptions options) |
Decrements the counter document by one or the number defined in the options.
|
Mono<CounterResult> |
ReactiveBinaryCollection.decrement(String id) |
Decrements the counter document by one.
|
Mono<CounterResult> |
ReactiveBinaryCollection.decrement(String id,
DecrementOptions options) |
Decrements the counter document by one or the number defined in the options.
|
CompletableFuture<CounterResult> |
AsyncBinaryCollection.increment(String id) |
Increments the counter document by one.
|
CompletableFuture<CounterResult> |
AsyncBinaryCollection.increment(String id,
IncrementOptions options) |
Increments the counter document by one or the number defined in the options.
|
Mono<CounterResult> |
ReactiveBinaryCollection.increment(String id) |
Increments the counter document by one.
|
Mono<CounterResult> |
ReactiveBinaryCollection.increment(String id,
IncrementOptions options) |
Increments the counter document by one or the number defined in the options.
|