rmqcpp
rmqcpp copied to clipboard
A batteries included C++ RabbitMQ Client Library/API.
**Is your feature request related to a problem? Please describe.** For the CMake building option, the Available configure presets are limited to "macos-arm64-vcpkg" "macos-x64-vcpkg" "linux-x64-vcpkg" **Describe the solution you'd like**...
### Problem statement This works faster than the one we have currently
**Is your feature request related to a problem? Please describe.** I'm reviewing this library to incorporate into my system and had a few initial questions. 1. Given that this library...
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
### Problem statement: - Previously, there was no resume() function that would restart the consumer after cancellation. ### Proposed changes: - Implements resume() function - Adds CANCELLING_BUT_RESUMING state to the...
Are there plans to offer official Python bindings?
As Mentioned in RabbitMQ Summit'23 it would be good to support the AMQP 1.0 protocol underneath but aim to keep the api the same as much as possible.
**Describe the bug** Its not possible to access the default vhost with e.g. `rmqhelloworld_producer` **To Reproduce** Steps to reproduce the behavior: 1. Call `rmqhelloworld_producer amqp://guest:guest@localhost:5672/` 2. See Error: `Error: Connection...
### Problem statement Boost.Iostreams was not actually used. The CMake dependencies to ASIO and its dependencies have not been established. ### Proposed changes Remove Boost.Iostreams includes and vcpkg dependencies. Add...