# rmqclient **Repository Path**: atavistic/rmqclient ## Basic Information - **Project Name**: rmqclient - **Description**: RabbitMQ client for C++. - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-11 - **Last Updated**: 2021-11-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # rmqclient RabbitMQ client example program using amqpcpp. ## Quick Start Test environment: - ubuntu 16.04 - cmake 3.5.1 - rabbitmq-server 3.5.7 Build: ```bash # mkdir build && cd build # cmake .. && make ``` BUild example: ```bash # cd build # cmake .. -DRMQCLIENT_BUILD_EXAMPLES=ON && make ./examples/rmq_receiver ./examples/rmq_sender ``` ## Reference - [AMQPCPP](https://github.com/CopernicaMarketingSoftware/AMQP-CPP) - [examples.amqp-cpp](https://github.com/hoxnox/examples.amqp-cpp)