kafkaWriteBuffer is a write buffer that helps writing fetch responses.
| 224 | |
| 225 | // kafkaWriteBuffer is a write buffer that helps writing fetch responses. |
| 226 | type kafkaWriteBuffer struct { |
| 227 | writeBuffer |
| 228 | buf bytes.Buffer |
| 229 | } |
| 230 | |
| 231 | func newWB() *kafkaWriteBuffer { |
| 232 | res := kafkaWriteBuffer{} |
nothing calls this directly
no outgoing calls
no test coverage detected