public class JsonTranscoder extends AbstractTranscoder<JsonDocument,JsonObject>
A transcoder to encode and decode JsonDocument
s.
Constructor and Description |
---|
JsonTranscoder() |
Modifier and Type | Method and Description |
---|---|
JsonObject |
byteBufToJsonObject(com.couchbase.client.deps.io.netty.buffer.ByteBuf input) |
java.lang.Class<JsonDocument> |
documentType() |
protected JsonDocument |
doDecode(java.lang.String id,
com.couchbase.client.deps.io.netty.buffer.ByteBuf content,
long cas,
int expiry,
int flags,
com.couchbase.client.core.message.ResponseStatus status)
Perform the decoding of the received response.
|
protected com.couchbase.client.core.lang.Tuple2<com.couchbase.client.deps.io.netty.buffer.ByteBuf,java.lang.Integer> |
doEncode(JsonDocument document)
Perform the encoding of the request document.
|
java.lang.String |
jsonObjectToString(JsonObject input) |
JsonDocument |
newDocument(java.lang.String id,
int expiry,
JsonObject content,
long cas) |
JsonObject |
stringToJsonObject(java.lang.String input) |
decode, encode
public java.lang.Class<JsonDocument> documentType()
protected com.couchbase.client.core.lang.Tuple2<com.couchbase.client.deps.io.netty.buffer.ByteBuf,java.lang.Integer> doEncode(JsonDocument document) throws java.lang.Exception
AbstractTranscoder
Perform the encoding of the request document.
doEncode
in class AbstractTranscoder<JsonDocument,JsonObject>
document
- the document to encode.java.lang.Exception
- if something goes wrong during the encode process.protected JsonDocument doDecode(java.lang.String id, com.couchbase.client.deps.io.netty.buffer.ByteBuf content, long cas, int expiry, int flags, com.couchbase.client.core.message.ResponseStatus status) throws java.lang.Exception
AbstractTranscoder
Perform the decoding of the received response.
doDecode
in class AbstractTranscoder<JsonDocument,JsonObject>
id
- the id of the document.content
- the encoded content of the document.cas
- the cas value of the document.expiry
- the expiration time of the document.flags
- the flags set on the document.status
- the response status.java.lang.Exception
- if something goes wrong during the decode process.public JsonDocument newDocument(java.lang.String id, int expiry, JsonObject content, long cas)
public java.lang.String jsonObjectToString(JsonObject input) throws java.lang.Exception
java.lang.Exception
public JsonObject stringToJsonObject(java.lang.String input) throws java.lang.Exception
java.lang.Exception
public JsonObject byteBufToJsonObject(com.couchbase.client.deps.io.netty.buffer.ByteBuf input) throws java.lang.Exception
java.lang.Exception