Uses of Class
com.couchbase.client.java.kv.MutateInOptions
-
Packages that use MutateInOptions 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 MutateInOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type MutateInOptions Modifier and Type Method Description CompletableFuture<MutateInResult>
AsyncCollection. mutateIn(String id, List<MutateInSpec> specs, MutateInOptions options)
Performs mutations to document fragments with custom options.MutateInResult
Collection. mutateIn(String id, List<MutateInSpec> specs, MutateInOptions options)
Performs mutations to document fragments with custom options.Mono<MutateInResult>
ReactiveCollection. mutateIn(String id, List<MutateInSpec> specs, MutateInOptions options)
Performs mutations to document fragments with custom options. -
Uses of MutateInOptions in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return MutateInOptions Modifier and Type Method Description MutateInOptions
MutateInOptions. accessDeleted(boolean accessDeleted)
For internal use only: allows access to deleted documents that are in 'tombstone' form.MutateInOptions
MutateInOptions. cas(long cas)
Specifies a CAS value that will be taken into account on the server side for optimistic concurrency.MutateInOptions
MutateInOptions. createAsDeleted(boolean createAsDeleted)
For internal use only: allows creating documents in 'tombstone' form.MutateInOptions
MutateInOptions. expiry(Duration expiry)
Sets the expiry time for the document as a relative duration.MutateInOptions
MutateInOptions. expiry(Instant expiry)
Sets the expiry time for the document as a absolute duration.MutateInOptions
CommonDatastructureOptions.BuiltCommonDatastructureOptions. mutateInOptions()
static MutateInOptions
MutateInOptions. mutateInOptions()
MutateInOptions
MutateInOptions. serializer(JsonSerializer serializer)
Customizes the serializer that is used to encoded the contents of this request.MutateInOptions
MutateInOptions. storeSemantics(StoreSemantics storeSemantics)
Changes the storing semantics of the outer/enclosing document.
-