(ctx context.Context)
| 514 | } |
| 515 | |
| 516 | func (p *TSimpleJSONProtocol) ReadByte(ctx context.Context) (int8, error) { |
| 517 | v, err := p.ReadI64(ctx) |
| 518 | return int8(v), err |
| 519 | } |
| 520 | |
| 521 | func (p *TSimpleJSONProtocol) ReadI16(ctx context.Context) (int16, error) { |
| 522 | v, err := p.ReadI64(ctx) |