mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-cppkafka.git
synced 2025-11-01 02:57:53 +00:00
Header support implementation (#115)
* header support implementation * Fixed issue when ptr is null and doesn't have a cloner function * Code complete with test cases updated travis file with v0.11.5 * Added compile time check for rdkafka header support version * Changes per last code review * Using brace list initializers
This commit is contained in:
committed by
Matias Fontanini
parent
9af4330c6d
commit
fbe3759fed
@@ -172,6 +172,14 @@ CPPKAFKA_API bool operator==(const Buffer& lhs, const Buffer& rhs);
|
||||
*/
|
||||
CPPKAFKA_API bool operator!=(const Buffer& lhs, const Buffer& rhs);
|
||||
|
||||
/**
|
||||
* Compares Buffer objects lexicographically
|
||||
*/
|
||||
CPPKAFKA_API bool operator<(const Buffer& lhs, const Buffer& rhs);
|
||||
CPPKAFKA_API bool operator<=(const Buffer& lhs, const Buffer& rhs);
|
||||
CPPKAFKA_API bool operator>(const Buffer& lhs, const Buffer& rhs);
|
||||
CPPKAFKA_API bool operator>=(const Buffer& lhs, const Buffer& rhs);
|
||||
|
||||
} // cppkafka
|
||||
|
||||
#endif // CPPKAFKA_BUFFER_H
|
||||
|
||||
Reference in New Issue
Block a user