(ctx context.Context, v string)
| 313 | } |
| 314 | |
| 315 | func (p *TSimpleJSONProtocol) WriteString(ctx context.Context, v string) error { |
| 316 | return p.OutputString(v) |
| 317 | } |
| 318 | |
| 319 | func (p *TSimpleJSONProtocol) WriteBinary(ctx context.Context, v []byte) error { |
| 320 | // JSON library only takes in a string, |