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 classJsonTranscoderclassLegacyTranscoderclassRawBinaryTranscoderclassRawJsonTranscoderclassRawStringTranscoderclassSdk2CompatibleLegacyTranscoderThis transcoder is compatible with the Java SDK 2 "LegacyTranscoder", which makes it usable back to Java SDK 1 as a result.classSerializableTranscoderThis transcoder allows to serialize and deserialize objects if they implement theSerializableinterface. -
Uses of Transcoder in com.couchbase.client.java.env
Methods in com.couchbase.client.java.env that return Transcoder Modifier and Type Method Description TranscoderClusterEnvironment. 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.BuilderClusterEnvironment.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 TranscoderGetResult. transcoderThe default transcoder which should be used.Methods in com.couchbase.client.java.kv that return Transcoder Modifier and Type Method Description TranscoderGetAllReplicasOptions.Built. transcoder()TranscoderGetAndLockOptions.Built. transcoder()TranscoderGetAndTouchOptions.Built. transcoder()TranscoderGetAnyReplicaOptions.Built. transcoder()TranscoderGetOptions.Built. transcoder()TranscoderInsertOptions.Built. transcoder()TranscoderReplaceOptions.Built. transcoder()TranscoderUpsertOptions.Built. transcoder()Methods in com.couchbase.client.java.kv with parameters of type Transcoder Modifier and Type Method Description static GetReplicaResultGetReplicaResult. from(ReplicaHelper.GetReplicaResponse response, Transcoder transcoder)static CompletableFuture<GetResult>GetAccessor. get(Core core, GetRequest request, Transcoder transcoder)Takes aGetRequestand dispatches, converts and returns the result.static CompletableFuture<GetResult>GetAccessor. getAndLock(Core core, GetAndLockRequest request, Transcoder transcoder)Takes aGetAndLockRequestand 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)GetAllReplicasOptionsGetAllReplicasOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to decode the content of the result.GetAndLockOptionsGetAndLockOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to decode the content of the result.GetAndTouchOptionsGetAndTouchOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to decode the content of the result.GetAnyReplicaOptionsGetAnyReplicaOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to decode the content of the result.GetOptionsGetOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to decode the content of the result.InsertOptionsInsertOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to encode the content of the request.ReplaceOptionsReplaceOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to encode the content of the request.UpsertOptionsUpsertOptions. transcoder(Transcoder transcoder)Allows to specify a custom transcoder that is used to encode the content of the request.
-