(wb *writeBuffer)
| 178 | } |
| 179 | |
| 180 | func (h requestHeader) writeTo(wb *writeBuffer) { |
| 181 | wb.writeInt32(h.Size) |
| 182 | wb.writeInt16(h.ApiKey) |
| 183 | wb.writeInt16(h.ApiVersion) |
| 184 | wb.writeInt32(h.CorrelationID) |
| 185 | wb.writeString(h.ClientID) |
| 186 | } |
| 187 | |
| 188 | type request interface { |
| 189 | size() int32 |
no test coverage detected