(wb *writeBuffer)
| 258 | } |
| 259 | |
| 260 | func (t topicMetadataV6) writeTo(wb *writeBuffer) { |
| 261 | wb.writeInt16(t.TopicErrorCode) |
| 262 | wb.writeString(t.TopicName) |
| 263 | wb.writeBool(t.Internal) |
| 264 | wb.writeArray(len(t.Partitions), func(i int) { t.Partitions[i].writeTo(wb) }) |
| 265 | } |
| 266 | |
| 267 | type partitionMetadataV6 struct { |
| 268 | PartitionErrorCode int16 |
nothing calls this directly
no test coverage detected