mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-02 03:28:01 +00:00
Added pause/resume for producers (#87)
* Added pause/resume for producers * Moved pause/resume functions to KafkaHandleBase
This commit is contained in:
committed by
Matias Fontanini
parent
069ea3df8e
commit
5c72f3fe28
@@ -101,6 +101,7 @@ public:
|
||||
using AssignmentCallback = std::function<void(TopicPartitionList&)>;
|
||||
using RevocationCallback = std::function<void(const TopicPartitionList&)>;
|
||||
using RebalanceErrorCallback = std::function<void(Error)>;
|
||||
using KafkaHandleBase::pause;
|
||||
|
||||
/**
|
||||
* \brief Creates an instance of a consumer.
|
||||
@@ -202,7 +203,7 @@ public:
|
||||
/**
|
||||
* \brief Resumes all consumption
|
||||
*/
|
||||
void resume();
|
||||
void resume();
|
||||
|
||||
/**
|
||||
* \brief Commits the current partition assignment
|
||||
|
||||
@@ -76,6 +76,13 @@ public:
|
||||
*/
|
||||
void pause_partitions(const TopicPartitionList& topic_partitions);
|
||||
|
||||
/**
|
||||
* \brief Pauses consumption/production for this topic
|
||||
*
|
||||
* \param topic The topic name
|
||||
*/
|
||||
void pause(const std::string& topic);
|
||||
|
||||
/**
|
||||
* \brief Resumes consumption/production from the given topic/partition list
|
||||
*
|
||||
@@ -84,6 +91,13 @@ public:
|
||||
* \param topic_partitions The topic/partition list to resume consuming/producing from/to
|
||||
*/
|
||||
void resume_partitions(const TopicPartitionList& topic_partitions);
|
||||
|
||||
/**
|
||||
* \brief Resumes consumption/production for this topic
|
||||
*
|
||||
* \param topic The topic name
|
||||
*/
|
||||
void resume(const std::string& topic);
|
||||
|
||||
/**
|
||||
* \brief Sets the timeout for operations that require a timeout
|
||||
|
||||
@@ -78,6 +78,7 @@ class Message;
|
||||
*/
|
||||
class CPPKAFKA_API Producer : public KafkaHandleBase {
|
||||
public:
|
||||
using KafkaHandleBase::pause;
|
||||
/**
|
||||
* The policy to use for the payload. The default policy is COPY_PAYLOAD
|
||||
*/
|
||||
|
||||
@@ -41,6 +41,7 @@
|
||||
namespace cppkafka {
|
||||
|
||||
class TopicPartition;
|
||||
class PartitionMetadata;
|
||||
|
||||
using TopicPartitionsListPtr = std::unique_ptr<rd_kafka_topic_partition_list_t,
|
||||
decltype(&rd_kafka_topic_partition_list_destroy)>;
|
||||
@@ -53,6 +54,8 @@ using TopicPartitionList = std::vector<TopicPartition>;
|
||||
CPPKAFKA_API TopicPartitionsListPtr convert(const TopicPartitionList& topic_partitions);
|
||||
CPPKAFKA_API TopicPartitionList convert(const TopicPartitionsListPtr& topic_partitions);
|
||||
CPPKAFKA_API TopicPartitionList convert(rd_kafka_topic_partition_list_t* topic_partitions);
|
||||
CPPKAFKA_API TopicPartitionList convert(const std::string& topic,
|
||||
const std::vector<PartitionMetadata>& partition_metadata);
|
||||
CPPKAFKA_API TopicPartitionsListPtr make_handle(rd_kafka_topic_partition_list_t* handle);
|
||||
|
||||
// Extracts a partition list subset belonging to the provided topics (case-insensitive)
|
||||
|
||||
Reference in New Issue
Block a user