()
| 78 | } |
| 79 | |
| 80 | func (t deleteTopicsRequest) size() int32 { |
| 81 | return sizeofStringArray(t.Topics) + |
| 82 | sizeofInt32(t.Timeout) |
| 83 | } |
| 84 | |
| 85 | func (t deleteTopicsRequest) writeTo(wb *writeBuffer) { |
| 86 | wb.writeStringArray(t.Topics) |
nothing calls this directly
no test coverage detected