Consumer defines the interface for Kafka message consumption
| 20 | |
| 21 | // Consumer defines the interface for Kafka message consumption |
| 22 | type Consumer interface { |
| 23 | Subscribe(topics []string) error |
| 24 | Close() error |
| 25 | } |
| 26 | |
| 27 | // Handler defines the interface for message processing |
| 28 | type Handler interface { |
nothing calls this directly
no outgoing calls
no test coverage detected