Uses of Interface
com.couchbase.client.java.codec.Transcoder
-
Packages that use Transcoder Package Description com.couchbase.client.java.codec Utilities and interfaces for encoding and decoding.com.couchbase.client.java.env Holds classes related to the environment and its configuration.com.couchbase.client.java.kv Namespace for various kv-service related classes. -
-
Uses of Transcoder in com.couchbase.client.java.codec
Classes in com.couchbase.client.java.codec that implement Transcoder Modifier and Type Class Description class
JsonTranscoder
class
LegacyTranscoder
class
RawBinaryTranscoder
class
RawJsonTranscoder
class
RawStringTranscoder
class
Sdk2CompatibleLegacyTranscoder
This transcoder is compatible with the Java SDK 2 "LegacyTranscoder", which makes it usable back to Java SDK 1 as a result.class
SerializableTranscoder
This transcoder allows to serialize and deserialize objects if they implement theSerializable
interface. -
Uses of Transcoder in com.couchbase.client.java.env
Methods in com.couchbase.client.java.env that return Transcoder Modifier and Type Method Description Transcoder
ClusterEnvironment. transcoder()
Returns the default transcoder used for all operations if not overridden on a per-operation basis.Methods in com.couchbase.client.java.env with parameters of type Transcoder Modifier and Type Method Description ClusterEnvironment.Builder
ClusterEnvironment.Builder. transcoder(Transcoder transcoder)
Allows to override the default transcoder going to be used for all KV operations. -
Uses of Transcoder in com.couchbase.client.java.kv
Fields in com.couchbase.client.java.kv declared as Transcoder Modifier and Type Field Description protected Transcoder
GetResult. transcoder
The default transcoder which should be used.Methods in com.couchbase.client.java.kv that return Transcoder Modifier and Type Method Description Transcoder
GetAllReplicasOptions.Built. transcoder()
Transcoder
GetAndLockOptions.Built. transcoder()
Transcoder
GetAndTouchOptions.Built. transcoder()
Transcoder
GetAnyReplicaOptions.Built. transcoder()
Transcoder
GetOptions.Built. transcoder()
Transcoder
InsertOptions.Built. transcoder()
Transcoder
ReplaceOptions.Built. transcoder()
Transcoder
UpsertOptions.Built. transcoder()
Methods in com.couchbase.client.java.kv with parameters of type Transcoder Modifier and Type Method Description static GetReplicaResult
GetReplicaResult. from(ReplicaHelper.GetReplicaResponse response, Transcoder transcoder)
static CompletableFuture<GetResult>
GetAccessor. get(Core core, GetRequest request, Transcoder transcoder)
Takes aGetRequest
and dispatches, converts and returns the result.static CompletableFuture<GetResult>
GetAccessor. getAndLock(Core core, GetAndLockRequest request, Transcoder transcoder)
Takes aGetAndLockRequest
and dispatches, converts and returns the result.static CompletableFuture<GetResult>
GetAccessor. getAndTouch(Core core, GetAndTouchRequest request, Transcoder transcoder)
static CompletableFuture<GetResult>
GetAccessor. subdocGet(Core core, SubdocGetRequest request, Transcoder transcoder)
GetAllReplicasOptions
GetAllReplicasOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to decode the content of the result.GetAndLockOptions
GetAndLockOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to decode the content of the result.GetAndTouchOptions
GetAndTouchOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to decode the content of the result.GetAnyReplicaOptions
GetAnyReplicaOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to decode the content of the result.GetOptions
GetOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to decode the content of the result.InsertOptions
InsertOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to encode the content of the request.ReplaceOptions
ReplaceOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to encode the content of the request.UpsertOptions
UpsertOptions. transcoder(Transcoder transcoder)
Allows to specify a custom transcoder that is used to encode the content of the request.
-