Documentation ¶
Overview ¶
Package bthrift .
Package bthrift is byted thrift
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Binary binaryProtocol
Binary protocol for bthrift.
Functions ¶
func Skip ¶
func Skip(buf []byte, self BTProtocol, fieldType thrift.TType, maxDepth int) (length int, err error)
Skip skips over the next data element from the provided input TProtocol object.
func SkipDefaultDepth ¶
SkipDefaultDepth skips over the next data element from the provided input TProtocol object.
Types ¶
type BTProtocol ¶
type BTProtocol interface { WriteMessageBegin(buf []byte, name string, typeID thrift.TMessageType, seqid int32) int WriteMessageBeginNocopy(buf []byte, binaryWriter BinaryWriter, name string, typeID thrift.TMessageType, seqid int32) int WriteMessageEnd(buf []byte) int WriteStructBegin(buf []byte, name string) int WriteStructEnd(buf []byte) int WriteFieldBegin(buf []byte, name string, typeID thrift.TType, id int16) int WriteFieldEnd(buf []byte) int WriteFieldStop(buf []byte) int WriteMapBegin(buf []byte, keyType thrift.TType, valueType thrift.TType, size int) int WriteMapEnd(buf []byte) int WriteListBegin(buf []byte, elemType thrift.TType, size int) int WriteListEnd(buf []byte) int WriteSetBegin(buf []byte, elemType thrift.TType, size int) int WriteSetEnd(buf []byte) int WriteBool(buf []byte, value bool) int WriteByte(buf []byte, value int8) int WriteI16(buf []byte, value int16) int WriteI32(buf []byte, value int32) int WriteI64(buf []byte, value int64) int WriteDouble(buf []byte, value float64) int WriteString(buf []byte, value string) int WriteBinary(buf []byte, value []byte) int WriteStringNocopy(buf []byte, binaryWriter BinaryWriter, value string) int WriteBinaryNocopy(buf []byte, binaryWriter BinaryWriter, value []byte) int MessageBeginLength(name string, typeID thrift.TMessageType, seqid int32) int MessageEndLength() int StructBeginLength(name string) int StructEndLength() int FieldBeginLength(name string, typeID thrift.TType, id int16) int FieldEndLength() int FieldStopLength() int MapBeginLength(keyType thrift.TType, valueType thrift.TType, size int) int MapEndLength() int ListBeginLength(elemType thrift.TType, size int) int ListEndLength() int SetBeginLength(elemType thrift.TType, size int) int SetEndLength() int BoolLength(value bool) int ByteLength(value int8) int I16Length(value int16) int I32Length(value int32) int I64Length(value int64) int DoubleLength(value float64) int StringLength(value string) int BinaryLength(value []byte) int StringLengthNocopy(value string) int BinaryLengthNocopy(value []byte) int ReadMessageBegin(buf []byte) (name string, typeID thrift.TMessageType, seqid int32, length int, err error) ReadMessageEnd(buf []byte) (int, error) ReadStructBegin(buf []byte) (name string, length int, err error) ReadStructEnd(buf []byte) (int, error) ReadFieldBegin(buf []byte) (name string, typeID thrift.TType, id int16, length int, err error) ReadFieldEnd(buf []byte) (int, error) ReadMapBegin(buf []byte) (keyType thrift.TType, valueType thrift.TType, size int, length int, err error) ReadMapEnd(buf []byte) (int, error) ReadListBegin(buf []byte) (elemType thrift.TType, size int, length int, err error) ReadListEnd(buf []byte) (int, error) ReadSetBegin(buf []byte) (elemType thrift.TType, size int, length int, err error) ReadSetEnd(buf []byte) (int, error) ReadBool(buf []byte) (value bool, length int, err error) ReadByte(buf []byte) (value int8, length int, err error) ReadI16(buf []byte) (value int16, length int, err error) ReadI32(buf []byte) (value int32, length int, err error) ReadI64(buf []byte) (value int64, length int, err error) ReadDouble(buf []byte) (value float64, length int, err error) ReadString(buf []byte) (value string, length int, err error) ReadBinary(buf []byte) (value []byte, length int, err error) Skip(buf []byte, fieldType thrift.TType) (length int, err error) }
BTProtocol .
type BinaryWriter ¶
BinaryWriter .
Click to show internal directories.
Click to hide internal directories.