Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mmacia/rabbitmqcppconnector
RabbitMQ C++ Connector
https://github.com/mmacia/rabbitmqcppconnector
Last synced: about 2 months ago
JSON representation
RabbitMQ C++ Connector
- Host: GitHub
- URL: https://github.com/mmacia/rabbitmqcppconnector
- Owner: mmacia
- License: mit
- Created: 2012-02-19T11:46:08.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-07-17T10:32:54.000Z (over 12 years ago)
- Last Synced: 2023-03-11T09:55:58.866Z (almost 2 years ago)
- Language: C++
- Homepage:
- Size: 234 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RabbitMQ C++ Connector
Status: **WIP, not fully usable yet.**
## What is working? ##
See `examples` directory.
- Connection to AMQP servers.
- Declare Queues.
- Basic consumer.## What it is RabbitMQ C++ Connector?
**RabbitMQ C++ Connector** is a wrapper to use [RabbitMQ](http://www.rabbitmq.com) services in an object oriented
way. This software uses the low level library `librabbitmq-c` to connect into
RabbitMQ servers and uses the Observer Pattern to ease integrate into your projects.## How to compile
First, ensure that you have all needed software:
`apt-get install build-essential cmake make`
Next, you need to update Git submodules:
`git submodule init; git submodule update`
Lastly, proceed to build the sources:
`mkdir build; cd build`
`cmake ..; make`