Pavel Kusnetsov
Results
2
issues of
Pavel Kusnetsov
I'm trying to implement the [Direct Reply-to](https://www.rabbitmq.com/direct-reply-to.html) feature: ``` class ReplyToMessageConsumer { private: bool processMessage(const rmqt::Message& message) { std::string payload((const char *)message.payload(), message.payloadSize()); std::cout
enhancement
### Problem statement Current implementation of rmqcpp library only provides a callback when the connection is broken. There is no callback which allows to detect when connection is restored to...