Uses of Class
com.couchbase.client.java.kv.AppendOptions
-
Packages that use AppendOptions 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 AppendOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type AppendOptions Modifier and Type Method Description CompletableFuture<MutationResult>
AsyncBinaryCollection. append(String id, byte[] content, AppendOptions options)
Appends binary content to the document with custom options.MutationResult
BinaryCollection. append(String id, byte[] content, AppendOptions options)
Appends binary content to the document with custom options.Mono<MutationResult>
ReactiveBinaryCollection. append(String id, byte[] content, AppendOptions options)
Appends binary content to the document with custom options. -
Uses of AppendOptions in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return AppendOptions Modifier and Type Method Description static AppendOptions
AppendOptions. appendOptions()
Creates a newAppendOptions
.AppendOptions
AppendOptions. cas(long cas)
Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.
-