Uses of Class
com.couchbase.client.java.kv.UpsertOptions
-
Packages that use UpsertOptions 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 UpsertOptions in com.couchbase.client.java
Methods in com.couchbase.client.java with parameters of type UpsertOptions Modifier and Type Method Description CompletableFuture<MutationResult>
AsyncCollection. upsert(String id, Object content, UpsertOptions options)
Upserts a full document which might or might not exist yet with custom options.MutationResult
Collection. 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, UpsertOptions options)
Upserts a full document which might or might not exist yet with custom options. -
Uses of UpsertOptions in com.couchbase.client.java.kv
Methods in com.couchbase.client.java.kv that return UpsertOptions Modifier and Type Method Description UpsertOptions
UpsertOptions. expiry(Duration expiry)
Sets the expiry for the document.UpsertOptions
UpsertOptions. expiry(Instant expiry)
Sets the expiry for the document.UpsertOptions
UpsertOptions. preserveExpiry(boolean preserveExpiry)
Specifies whether an existing document's expiry should be preserved.UpsertOptions
UpsertOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to encode the content of the request.UpsertOptions
CommonDatastructureOptions.BuiltCommonDatastructureOptions. upsertOptions()
static UpsertOptions
UpsertOptions. upsertOptions()
-