-
Methods in com.couchbase.client.java.transcoder.subdoc that throw TranscodingException
Modifier and Type |
Method |
Description |
<T> T |
AbstractFragmentTranscoder.decode(com.couchbase.client.deps.io.netty.buffer.ByteBuf encoded,
Class<? extends T> clazz) |
|
<T> T |
FragmentTranscoder.decode(com.couchbase.client.deps.io.netty.buffer.ByteBuf encoded,
Class<? extends T> clazz) |
Decode content in a ByteBuf **without releasing it**.
|
<T> T |
AbstractByteArrayFragmentTranscoder.decodeWithMessage(com.couchbase.client.deps.io.netty.buffer.ByteBuf encoded,
Class<? extends T> clazz,
String transcodingErrorMessage) |
|
<T> T |
FragmentTranscoder.decodeWithMessage(com.couchbase.client.deps.io.netty.buffer.ByteBuf encoded,
Class<? extends T> clazz,
String transcodingErrorMessage) |
Decode content in a ByteBuf **without releasing it**.
|
<T> T |
JacksonFragmentTranscoder.decodeWithMessage(com.couchbase.client.deps.io.netty.buffer.ByteBuf encoded,
Class<? extends T> clazz,
String transcodingErrorMessage) |
|
protected com.couchbase.client.deps.io.netty.buffer.ByteBuf |
AbstractByteArrayFragmentTranscoder.doEncodeMulti(MultiValue<?> multiValue,
String transcodingErrorMessage) |
|
protected abstract com.couchbase.client.deps.io.netty.buffer.ByteBuf |
AbstractFragmentTranscoder.doEncodeMulti(MultiValue<?> multiValue,
String transcodingErrorMessage) |
Encode a special mutation value that denotes multiple values being processed in bulk,
to a ByteBuf suitable for use in the sub-document protocol.
|
protected <T> com.couchbase.client.deps.io.netty.buffer.ByteBuf |
AbstractByteArrayFragmentTranscoder.doEncodeSingle(T value,
String transcodingErrorMessage) |
|
protected abstract <T> com.couchbase.client.deps.io.netty.buffer.ByteBuf |
AbstractFragmentTranscoder.doEncodeSingle(T value,
String transcodingErrorMessage) |
Encode a single mutation value to a ByteBuf suitable for use in the sub-document protocol.
|
<T> com.couchbase.client.deps.io.netty.buffer.ByteBuf |
AbstractFragmentTranscoder.encode(T value) |
|
<T> com.couchbase.client.deps.io.netty.buffer.ByteBuf |
FragmentTranscoder.encode(T value) |
Encode a value to a ByteBuf suitable for use in the sub-document protocol.
|
<T> com.couchbase.client.deps.io.netty.buffer.ByteBuf |
AbstractFragmentTranscoder.encodeWithMessage(T value,
String transcodingErrorMessage) |
|
<T> com.couchbase.client.deps.io.netty.buffer.ByteBuf |
FragmentTranscoder.encodeWithMessage(T value,
String transcodingErrorMessage) |
Encode a value to a ByteBuf suitable for use in the sub-document protocol.
|