(wb *writeBuffer)
| 278 | } |
| 279 | |
| 280 | func (p partitionMetadataV6) writeTo(wb *writeBuffer) { |
| 281 | wb.writeInt16(p.PartitionErrorCode) |
| 282 | wb.writeInt32(p.PartitionID) |
| 283 | wb.writeInt32(p.Leader) |
| 284 | wb.writeInt32Array(p.Replicas) |
| 285 | wb.writeInt32Array(p.Isr) |
| 286 | wb.writeInt32Array(p.OfflineReplicas) |
| 287 | } |
nothing calls this directly
no test coverage detected