()
| 214 | } |
| 215 | |
| 216 | func (t fetchRequestTopicV2) size() int32 { |
| 217 | return sizeofString(t.TopicName) + |
| 218 | sizeofArray(len(t.Partitions), func(i int) int32 { return t.Partitions[i].size() }) |
| 219 | } |
| 220 | |
| 221 | func (t fetchRequestTopicV2) writeTo(wb *writeBuffer) { |
| 222 | wb.writeString(t.TopicName) |
nothing calls this directly
no test coverage detected