Creates a new Kafka consumer handle.
Consume a single message from \p topic and \p partition.
Consume a single message from the specified queue.
Consumes messages from \p topic and \p partition, calling the provided callback for each consumed messsage.
Consumes messages from \p queue, calling the provided callback for each consumed messsage.
Converts an offset into the logical offset from the tail of a topic.
Seek consumer for topic+partition to \p offset which is either an absolute or logical offset.
Start consuming messages for topic and \p partition at offset \p offset which may either be a proper offset (0..N) or one of the the special offsets: \p OFFSET_BEGINNING or \p OFFSET_END.
Stop consuming messages for topic and \p partition, purging all messages currently in the local queue.
Simple Consumer (legacy)
A simple non-balanced, non-group-aware, consumer.