Uses of Interface
com.couchbase.client.java.codec.Transcoder
Packages that use Transcoder
Package
Description
Utilities and interfaces for encoding and decoding.
Holds classes related to the environment and its configuration.
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 TranscoderModifier and TypeClassDescriptionclass
class
class
class
class
class
This transcoder is compatible with the Java SDK 2 "LegacyTranscoder", which makes it usable back to Java SDK 1 as a result.class
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 TranscoderModifier and TypeMethodDescriptionClusterEnvironment.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 TranscoderModifier and TypeMethodDescriptionClusterEnvironment.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 TranscoderModifier and TypeFieldDescriptionprotected final Transcoder
GetResult.transcoder
The default transcoder which should be used.Methods in com.couchbase.client.java.kv that return TranscoderModifier and TypeMethodDescriptionGetAllReplicasOptions.Built.transcoder()
GetAndLockOptions.Built.transcoder()
GetAndTouchOptions.Built.transcoder()
GetAnyReplicaOptions.Built.transcoder()
GetOptions.Built.transcoder()
InsertOptions.Built.transcoder()
ReplaceOptions.Built.transcoder()
UpsertOptions.Built.transcoder()
Methods in com.couchbase.client.java.kv with parameters of type TranscoderModifier and TypeMethodDescriptionstatic 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.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to decode the content of the result.GetAndLockOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to decode the content of the result.GetAndTouchOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to decode the content of the result.GetAnyReplicaOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to decode the content of the result.GetOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to decode the content of the result.InsertOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to encode the content of the request.ReplaceOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to encode the content of the request.UpsertOptions.transcoder
(Transcoder transcoder) Allows to specify a custom transcoder that is used to encode the content of the request.