rabbitmq-tutorials/erlang
2019-03-08 16:02:05 -08:00
..
.gitignore Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
emit_log_direct.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
emit_log_topic.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
emit_log.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
erlang.mk Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
Makefile Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
new_task.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
README.md Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
receive_logs_direct.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
receive_logs_topic.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
receive_logs.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
receive.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
send.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00
worker.erl Add Makefile and update code to make Erlang samples easier to run 2019-03-08 16:02:05 -08:00

Erlang code for RabbitMQ tutorials

Here you can find a Erlang code examples from RabbitMQ tutorials.

This code is using RabbitMQ Erlang Client (User Guide).

Requirements

To run this code you need at least Erlang R13B03, on Ubuntu you can get it using apt:

sudo apt-get install erlang

You need Erlang Client binaries:

make deps

Code

Tutorial one: "Hello World!":

./send.erl
./receive.erl

Tutorial two: Work Queues:

./new_task.erl "A very hard task which takes two seconds.."
./worker.erl

Tutorial three: Publish/Subscribe:

./receive_logs.erl
./emit_log.erl "info: This is the log message"

Tutorial four: Routing:

./receive_logs_direct.erl info
./emit_log_direct.erl info Hello

Tutorial five: Topics:

./receive_logs_topic.erl "*.rabbit"
./emit_log_topic.erl red.rabbit Hello