(ctx context.Context, v string)
| 189 | } |
| 190 | |
| 191 | func (p *TJSONProtocol) WriteString(ctx context.Context, v string) error { |
| 192 | return p.OutputString(v) |
| 193 | } |
| 194 | |
| 195 | func (p *TJSONProtocol) WriteBinary(ctx context.Context, v []byte) error { |
| 196 | // JSON library only takes in a string, |