()
| 168 | } |
| 169 | |
| 170 | func (t topicMetadataV1) size() int32 { |
| 171 | return 2 + 1 + |
| 172 | sizeofString(t.TopicName) + |
| 173 | sizeofArray(len(t.Partitions), func(i int) int32 { return t.Partitions[i].size() }) |
| 174 | } |
| 175 | |
| 176 | func (t topicMetadataV1) writeTo(wb *writeBuffer) { |
| 177 | wb.writeInt16(t.TopicErrorCode) |
nothing calls this directly
no test coverage detected