CompactProtocol is a Protocol implementation for the compact thrift protocol. https://github.com/apache/thrift/blob/master/doc/specs/thrift-compact-protocol.md#integer-encoding
| 13 | // |
| 14 | // https://github.com/apache/thrift/blob/master/doc/specs/thrift-compact-protocol.md#integer-encoding |
| 15 | type CompactProtocol struct{} |
| 16 | |
| 17 | func (p *CompactProtocol) NewReader(r io.Reader) Reader { |
| 18 | return &compactReader{protocol: p, binary: binaryReader{r: r}} |
nothing calls this directly
no outgoing calls
no test coverage detected