causeHandler is a ConsumerGroupHandler that captures the context.Cause when the session context is canceled.
| 354 | // causeHandler is a ConsumerGroupHandler that captures the context.Cause when |
| 355 | // the session context is canceled. |
| 356 | type causeHandler struct { |
| 357 | causeCh chan error |
| 358 | } |
| 359 | |
| 360 | func (h *causeHandler) Setup(_ ConsumerGroupSession) error { return nil } |
| 361 | func (h *causeHandler) Cleanup(_ ConsumerGroupSession) error { |
nothing calls this directly
no outgoing calls
no test coverage detected