(ctx context.Context, b int8)
| 169 | } |
| 170 | |
| 171 | func (p *TJSONProtocol) WriteByte(ctx context.Context, b int8) error { |
| 172 | return p.WriteI32(ctx, int32(b)) |
| 173 | } |
| 174 | |
| 175 | func (p *TJSONProtocol) WriteI16(ctx context.Context, v int16) error { |
| 176 | return p.WriteI32(ctx, int32(v)) |