| 45 | } |
| 46 | |
| 47 | type Response struct { |
| 48 | // We need at least one tagged field to indicate that this is a "flexible" message |
| 49 | // type. |
| 50 | _ struct{} `kafka:"min=v5,max=v5,tag"` |
| 51 | ThrottleTimeMs int32 `kafka:"min=v1,max=v5"` |
| 52 | Groups []ResponseGroup `kafka:"min=v0,max=v5"` |
| 53 | } |
| 54 | |
| 55 | type ResponseGroup struct { |
| 56 | // We need at least one tagged field to indicate that this is a "flexible" message |
nothing calls this directly
no outgoing calls
no test coverage detected