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