Pavel Kusnetsov

Results 4 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...

**Is your feature request related to a problem? Please describe.** In my scenario, I do not care much about reliability, but the performance is the key. So I want to...

The topic exchange routing key has a limitation of 255 bytes (see https://www.rabbitmq.com/tutorials/tutorial-five-go#:~:text=There%20can%20be%20as%20many,be%20in%20the%20same%20form.). However, this limitation is not applied when binding queue to an exchange or sending the message: **To...