(ctx context.Context)
| 600 | } |
| 601 | |
| 602 | func (p *TSimpleJSONProtocol) ReadUUID(ctx context.Context) (v Tuuid, err error) { |
| 603 | var s string |
| 604 | s, err = p.ReadString(ctx) |
| 605 | if err != nil { |
| 606 | return v, err |
| 607 | } |
| 608 | v, err = ParseTuuid(s) |
| 609 | return v, NewTProtocolExceptionWithType(INVALID_DATA, err) |
| 610 | } |
| 611 | |
| 612 | func (p *TSimpleJSONProtocol) Flush(ctx context.Context) (err error) { |
| 613 | return NewTProtocolException(p.writer.Flush()) |
nothing calls this directly
no test coverage detected