(conf *TConfiguration)
| 861 | } |
| 862 | |
| 863 | func (p *TCompactProtocol) SetTConfiguration(conf *TConfiguration) { |
| 864 | PropagateTConfiguration(p.trans, conf) |
| 865 | PropagateTConfiguration(p.origTransport, conf) |
| 866 | p.cfg = conf |
| 867 | } |
| 868 | |
| 869 | // Return the minimum number of bytes a type will consume on the wire |
| 870 | func (p *TCompactProtocol) getMinSerializedSize(ttype TType) int32 { |
no test coverage detected