Package org.apache.thrift.protocol
Interface TReadProtocol
-
- All Known Implementing Classes:
TBinaryProtocol,TCompactProtocol,TJSONProtocol,TMultiplexedProtocol,TProtocol,TProtocolDecorator,TSimpleJSONProtocol,TTupleProtocol
public interface TReadProtocol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.nio.ByteBufferreadBinary()booleanreadBool()bytereadByte()doublereadDouble()TFieldreadFieldBegin()voidreadFieldEnd()shortreadI16()intreadI32()longreadI64()TListreadListBegin()voidreadListEnd()TMapreadMapBegin()voidreadMapEnd()TMessagereadMessageBegin()voidreadMessageEnd()TSetreadSetBegin()voidreadSetEnd()java.lang.StringreadString()TStructreadStructBegin()voidreadStructEnd()
-
-
-
Method Detail
-
readMessageBegin
TMessage readMessageBegin() throws TException
- Throws:
TException
-
readMessageEnd
void readMessageEnd() throws TException- Throws:
TException
-
readStructBegin
TStruct readStructBegin() throws TException
- Throws:
TException
-
readStructEnd
void readStructEnd() throws TException- Throws:
TException
-
readFieldBegin
TField readFieldBegin() throws TException
- Throws:
TException
-
readFieldEnd
void readFieldEnd() throws TException- Throws:
TException
-
readMapBegin
TMap readMapBegin() throws TException
- Throws:
TException
-
readMapEnd
void readMapEnd() throws TException- Throws:
TException
-
readListBegin
TList readListBegin() throws TException
- Throws:
TException
-
readListEnd
void readListEnd() throws TException- Throws:
TException
-
readSetBegin
TSet readSetBegin() throws TException
- Throws:
TException
-
readSetEnd
void readSetEnd() throws TException- Throws:
TException
-
readBool
boolean readBool() throws TException- Throws:
TException
-
readByte
byte readByte() throws TException- Throws:
TException
-
readI16
short readI16() throws TException- Throws:
TException
-
readI32
int readI32() throws TException- Throws:
TException
-
readI64
long readI64() throws TException- Throws:
TException
-
readDouble
double readDouble() throws TException- Throws:
TException
-
readString
java.lang.String readString() throws TException- Throws:
TException
-
readBinary
java.nio.ByteBuffer readBinary() throws TException- Throws:
TException
-
-