| 11 | } |
| 12 | |
| 13 | type Request struct { |
| 14 | TransactionalID string `kafka:"min=v3,max=v8,nullable"` |
| 15 | Acks int16 `kafka:"min=v0,max=v8"` |
| 16 | Timeout int32 `kafka:"min=v0,max=v8"` |
| 17 | Topics []RequestTopic `kafka:"min=v0,max=v8"` |
| 18 | } |
| 19 | |
| 20 | func (r *Request) ApiKey() protocol.ApiKey { return protocol.Produce } |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected