Source code for src.base.kafka.client
"""Common base type for Kafka client wrappers."""
[docs]
class KafkaHandler:
"""Base class shared by producer and consumer wrappers."""
def __init__(self) -> None:
self.consumer = None
"""Common base type for Kafka client wrappers."""
[docs]
class KafkaHandler:
"""Base class shared by producer and consumer wrappers."""
def __init__(self) -> None:
self.consumer = None