li-apache-kafka-clients is a wrapper library for the Apache Kafka vanilla clients. It provides additional features such as large message support and auditing to the Java producer and consumer in the open source Apache Kafka.
BSD 2-Clause "Simplified" License
133
stars
52
forks
source link
Make KafkaConsumer poll(long) and poll(Duration) API visible to LiKaf… #128
Currently poll(long) and poll(Duration) in LiKafkaConsumerImpl both call KafkaConsumer.poll(Duration). We need to expose both of KafkaConsumer's poll() in LiKafkaConsumerImpl so that kafka-rest can leverage them.
Currently
poll(long)
andpoll(Duration)
inLiKafkaConsumerImpl
both callKafkaConsumer.poll(Duration)
. We need to expose both ofKafkaConsumer
'spoll()
inLiKafkaConsumerImpl
so thatkafka-rest
can leverage them.