ConsumerMetadataResponse holds the response for a consumer group meta data requests
| 7 | |
| 8 | // ConsumerMetadataResponse holds the response for a consumer group meta data requests |
| 9 | type ConsumerMetadataResponse struct { |
| 10 | Version int16 |
| 11 | Err KError |
| 12 | Coordinator *Broker |
| 13 | CoordinatorID int32 // deprecated: use Coordinator.ID() |
| 14 | CoordinatorHost string // deprecated: use Coordinator.Addr() |
| 15 | CoordinatorPort int32 // deprecated: use Coordinator.Addr() |
| 16 | } |
| 17 | |
| 18 | func (r *ConsumerMetadataResponse) setVersion(v int16) { |
| 19 | r.Version = v |
nothing calls this directly
no outgoing calls
no test coverage detected