Fix for ref count on queue handles (#92)

* Fix for ref count on queue handles

* added check for rdkafka version

* changed to runtime version checking
This commit is contained in:
Alex Damian
2018-07-23 20:07:35 -04:00
committed by Matias Fontanini
parent 3238c94f43
commit d6f8129207
2 changed files with 18 additions and 7 deletions

View File

@@ -403,7 +403,7 @@ public:
* \return A Queue object
*
* \remark Note that this call will disable forwarding to the consumer_queue.
* To restore forwarding (if desired) call Queue::forward_to_queue(consumer_queue)
* To restore forwarding if desired, call Queue::forward_to_queue(consumer_queue)
*/
Queue get_main_queue() const;
@@ -424,7 +424,7 @@ public:
* \return A Queue object
*
* \remark Note that this call will disable forwarding to the consumer_queue.
* To restore forwarding (if desired) call Queue::forward_to_queue(consumer_queue)
* To restore forwarding if desired, call Queue::forward_to_queue(consumer_queue)
*/
Queue get_partition_queue(const TopicPartition& partition) const;
private: