(ctx context.Context)
| 357 | } |
| 358 | |
| 359 | func (p *TJSONProtocol) ReadByte(ctx context.Context) (int8, error) { |
| 360 | v, err := p.ReadI64(ctx) |
| 361 | return int8(v), err |
| 362 | } |
| 363 | |
| 364 | func (p *TJSONProtocol) ReadI16(ctx context.Context) (int16, error) { |
| 365 | v, err := p.ReadI64(ctx) |