Detailed API definition: https://kafka.apache.org/protocol#The_Messages_ElectLeaders
| 8 | |
| 9 | // Detailed API definition: https://kafka.apache.org/protocol#The_Messages_ElectLeaders |
| 10 | type Request struct { |
| 11 | ElectionType int8 `kafka:"min=v1,max=v1"` |
| 12 | TopicPartitions []RequestTopicPartitions `kafka:"min=v0,max=v1"` |
| 13 | TimeoutMs int32 `kafka:"min=v0,max=v1"` |
| 14 | } |
| 15 | |
| 16 | type RequestTopicPartitions struct { |
| 17 | Topic string `kafka:"min=v0,max=v1"` |
nothing calls this directly
no outgoing calls
no test coverage detected