(wb *writeBuffer)
| 174 | } |
| 175 | |
| 176 | func (t topicMetadataV1) writeTo(wb *writeBuffer) { |
| 177 | wb.writeInt16(t.TopicErrorCode) |
| 178 | wb.writeString(t.TopicName) |
| 179 | wb.writeBool(t.Internal) |
| 180 | wb.writeArray(len(t.Partitions), func(i int) { t.Partitions[i].writeTo(wb) }) |
| 181 | } |
| 182 | |
| 183 | type partitionMetadataV1 struct { |
| 184 | PartitionErrorCode int16 |
nothing calls this directly
no test coverage detected