1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package sarama
- import "github.com/rcrowley/go-metrics"
- type packetEncoder interface {
-
- putInt8(in int8)
- putInt16(in int16)
- putInt32(in int32)
- putInt64(in int64)
- putArrayLength(in int) error
-
- putBytes(in []byte) error
- putRawBytes(in []byte) error
- putString(in string) error
- putStringArray(in []string) error
- putInt32Array(in []int32) error
- putInt64Array(in []int64) error
-
- offset() int
-
- push(in pushEncoder)
- pop() error
-
- metricRegistry() metrics.Registry
- }
- type pushEncoder interface {
-
- saveOffset(in int)
-
- reserveLength() int
-
-
-
- run(curOffset int, buf []byte) error
- }
|