mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-01 02:57:53 +00:00
Added method to set the partition
This commit is contained in:
@@ -107,6 +107,11 @@ public:
|
||||
*/
|
||||
int64_t get_offset() const;
|
||||
|
||||
/**
|
||||
* @brief Sets the partition
|
||||
*/
|
||||
void set_partition(int partition);
|
||||
|
||||
/**
|
||||
* Sets the offset
|
||||
*/
|
||||
|
||||
@@ -76,6 +76,10 @@ int64_t TopicPartition::get_offset() const {
|
||||
return offset_;
|
||||
}
|
||||
|
||||
void TopicPartition::set_partition(int partition) {
|
||||
partition_ = partition;
|
||||
}
|
||||
|
||||
void TopicPartition::set_offset(int64_t offset) {
|
||||
offset_ = offset;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user