Java org.apache.thrift TDeserializer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.thrift TDeserializer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.thrift TDeserializer.

The text is from its open source code.

Constructor

TDeserializer(TProtocolFactory protocolFactory)
Create a new TDeserializer.
TDeserializer()
Create a new TDeserializer that uses the TBinaryProtocol by default.

Method

voiddeserialize(TBase base, byte[] bytes)
Deserialize the Thrift object from a byte array.
voiddeserialize(TBase base, String data, String charset)
Deserialize the Thrift object from a Java string, using a specified character set for decoding.
voiddeserialize(TBase base, byte[] bytes, int offset, int length)
Deserialize the Thrift object from a byte array.
voidfromString(TBase base, String data)
Deserialize the Thrift object from a Java string, using the default JVM charset encoding.