simple-amqp-client

C++ wrapper library for RabbitMQ client with AMQP protocol support

brewmacoslinux
Try with needOr install directly
Source

About

C++ interface to rabbitmq-c

Commands

simple-amqp-client

Examples

Include the library in a C++ project for AMQP messaging$ g++ -o amqp_app main.cpp -lsimple_amqp_client -lrabbitmq
Link against simple-amqp-client in CMake project$ find_package(SimpleAmqpClient REQUIRED) and target_link_libraries(myapp SimpleAmqpClient::SimpleAmqpClient)
Use pkg-config to get compiler flags for building with the library$ pkg-config --cflags --libs SimpleAmqpClient