| 3 | import "time" |
| 4 | |
| 5 | type InitProducerIDResponse struct { |
| 6 | ThrottleTime time.Duration |
| 7 | Err KError |
| 8 | Version int16 |
| 9 | ProducerID int64 |
| 10 | ProducerEpoch int16 |
| 11 | } |
| 12 | |
| 13 | func (i *InitProducerIDResponse) setVersion(v int16) { |
| 14 | i.Version = v |
nothing calls this directly
no outgoing calls
no test coverage detected