examples.amqp-cpp icon indicating copy to clipboard operation
examples.amqp-cpp copied to clipboard

AMQP-CPP examples based on libevent

C++ code for RabbitMQ tutorials

Almost the same examples as in AMQP-CPP project (see examples directory). With some minor changes. Based on libevent.

Code

Tutorial one: "Hello World!":

receive
send

Tutorial two: Work Queues:

new_task
worker

Tutorial three: Publish/Subscribe:

receive_logs
emit_log

Tutorial four: Routing:

receive_logs_direct
emit_log_direct

Tutorial five: Topics:

receive_logs_topic
emit_log_topic

Tutorial six: RPC:

rpc_server
rpc_client