(wb *writeBuffer)
| 193 | } |
| 194 | |
| 195 | func (p partitionMetadataV1) writeTo(wb *writeBuffer) { |
| 196 | wb.writeInt16(p.PartitionErrorCode) |
| 197 | wb.writeInt32(p.PartitionID) |
| 198 | wb.writeInt32(p.Leader) |
| 199 | wb.writeInt32Array(p.Replicas) |
| 200 | wb.writeInt32Array(p.Isr) |
| 201 | } |
| 202 | |
| 203 | type topicMetadataRequestV6 struct { |
| 204 | Topics []string |
nothing calls this directly
no test coverage detected