Class RawJsonTranscoder
- java.lang.Object
-
- com.couchbase.client.java.transcoder.AbstractTranscoder<RawJsonDocument,String>
-
- com.couchbase.client.java.transcoder.RawJsonTranscoder
-
- All Implemented Interfaces:
Transcoder<RawJsonDocument,String>
public class RawJsonTranscoder extends AbstractTranscoder<RawJsonDocument,String>
A transcoder to encode and decode aRawJsonDocuments.- Since:
- 2.0
- Author:
- Michael Nitschinger
-
-
Constructor Summary
Constructors Constructor Description RawJsonTranscoder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<RawJsonDocument>documentType()protected RawJsonDocumentdoDecode(String id, com.couchbase.client.deps.io.netty.buffer.ByteBuf content, long cas, int expiry, int flags, ResponseStatus status)Perform the decoding of the received response.protected Tuple2<com.couchbase.client.deps.io.netty.buffer.ByteBuf,Integer>doEncode(RawJsonDocument document)Perform the encoding of the request document.RawJsonDocumentnewDocument(String id, int expiry, String content, long cas)Creates a new Document with the passed in information.RawJsonDocumentnewDocument(String id, int expiry, String content, long cas, MutationToken mutationToken)Default implementation for backwards compatibility.-
Methods inherited from class com.couchbase.client.java.transcoder.AbstractTranscoder
decode, encode, shouldAutoReleaseOnDecode, shouldAutoReleaseOnError
-
-
-
-
Method Detail
-
doEncode
protected Tuple2<com.couchbase.client.deps.io.netty.buffer.ByteBuf,Integer> doEncode(RawJsonDocument document) throws Exception
Description copied from class:AbstractTranscoderPerform the encoding of the request document.- Specified by:
doEncodein classAbstractTranscoder<RawJsonDocument,String>- Parameters:
document- the document to encode.- Returns:
- A tuple consisting of the encoded content and the flags to set.
- Throws:
Exception- if something goes wrong during the encode process.
-
doDecode
protected RawJsonDocument doDecode(String id, com.couchbase.client.deps.io.netty.buffer.ByteBuf content, long cas, int expiry, int flags, ResponseStatus status) throws Exception
Description copied from class:AbstractTranscoderPerform the decoding of the received response.- Specified by:
doDecodein classAbstractTranscoder<RawJsonDocument,String>- Parameters:
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.- Returns:
- the decoded document.
- Throws:
Exception- if something goes wrong during the decode process.
-
newDocument
public RawJsonDocument newDocument(String id, int expiry, String content, long cas)
Description copied from interface:TranscoderCreates a new Document with the passed in information. Use the one with the mutation token instead (Transcoder.newDocument(String, int, Object, long, MutationToken)).- Parameters:
id- the id of the document.expiry- the document expiration.content- the document content.cas- the documents cas value.- Returns:
- the created document.
-
newDocument
public RawJsonDocument newDocument(String id, int expiry, String content, long cas, MutationToken mutationToken)
Description copied from class:AbstractTranscoderDefault implementation for backwards compatibility.- Specified by:
newDocumentin interfaceTranscoder<RawJsonDocument,String>- Overrides:
newDocumentin classAbstractTranscoder<RawJsonDocument,String>- Parameters:
id- the id of the document.expiry- the document expiration.content- the document content.cas- the documents cas value.mutationToken- the documents mutation token.- Returns:
- the created document.
-
documentType
public Class<RawJsonDocument> documentType()
-
-