Uses of Class
com.couchbase.client.java.kv.IncrementOptions
-
Packages that use IncrementOptions Package Description com.couchbase.client.java Holds all classes that are needed for the Couchbase Java SDK.com.couchbase.client.java.kv Namespace for various kv-service related classes. -
-
Uses of IncrementOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type IncrementOptions Modifier and Type Method Description CompletableFuture<CounterResult>AsyncBinaryCollection. increment(String id, IncrementOptions options)Increments the counter document by one or the number defined in the options.CounterResultBinaryCollection. increment(String id, IncrementOptions options)Increments the counter document by one or the number defined in the options.Mono<CounterResult>ReactiveBinaryCollection. increment(String id, IncrementOptions options)Increments the counter document by one or the number defined in the options. -
Uses of IncrementOptions in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return IncrementOptions Modifier and Type Method Description IncrementOptionsIncrementOptions. delta(long delta)The amount of which the document value should be incremented.IncrementOptionsIncrementOptions. expiry(Duration expiry)Sets the expiry for the document.IncrementOptionsIncrementOptions. expiry(Instant expiry)Sets the expiry for the document.static IncrementOptionsIncrementOptions. incrementOptions()Creates a newIncrementOptions.IncrementOptionsIncrementOptions. initial(long initial)The initial value that should be used if the document has not been created yet.
-