mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-08 14:33:16 +00:00
Print assigned and revoked partitions on consumer example
This commit is contained in:
@@ -13,6 +13,7 @@ using std::endl;
|
|||||||
using cppkafka::Consumer;
|
using cppkafka::Consumer;
|
||||||
using cppkafka::Configuration;
|
using cppkafka::Configuration;
|
||||||
using cppkafka::Message;
|
using cppkafka::Message;
|
||||||
|
using cppkafka::TopicPartitionList;
|
||||||
|
|
||||||
namespace po = boost::program_options;
|
namespace po = boost::program_options;
|
||||||
|
|
||||||
@@ -60,6 +61,16 @@ int main(int argc, char* argv[]) {
|
|||||||
// Create the consumer
|
// Create the consumer
|
||||||
Consumer consumer(config);
|
Consumer consumer(config);
|
||||||
|
|
||||||
|
// Print the assigned partitions on assignment
|
||||||
|
consumer.set_assignment_callback([](const TopicPartitionList& partitions) {
|
||||||
|
cout << "Got assigned: " << partitions << endl;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Print the revoked partitions on revocation
|
||||||
|
consumer.set_revocation_callback([](const TopicPartitionList& partitions) {
|
||||||
|
cout << "Got revoked: " << partitions << endl;
|
||||||
|
});
|
||||||
|
|
||||||
// Subscribe to the topic
|
// Subscribe to the topic
|
||||||
consumer.subscribe({ topic_name });
|
consumer.subscribe({ topic_name });
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user