Write a set header.
(ctx context.Context, elemType TType, size int)
| 276 | |
| 277 | // Write a set header. |
| 278 | func (p *TCompactProtocol) WriteSetBegin(ctx context.Context, elemType TType, size int) error { |
| 279 | _, err := p.writeCollectionBegin(elemType, size) |
| 280 | return NewTProtocolException(err) |
| 281 | } |
| 282 | |
| 283 | func (p *TCompactProtocol) WriteSetEnd(ctx context.Context) error { return nil } |
| 284 |
nothing calls this directly
no test coverage detected