rabbitmq-tutorials/elixir-stream
2024-08-14 11:11:03 -04:00
..
consume.exs Elixir streams: do not assume any particular application startup order 2024-08-14 11:11:03 -04:00
publish.exs add elixir streams example 2024-08-10 17:15:01 -03:00
README.md Elixir streams: do not assume any particular application startup order 2024-08-14 11:11:03 -04:00

Elixir code for RabbitMQ tutorials

Here you can find Elixir code examples from RabbitMQ tutorials.

Requirements

These examples use the VictorGaiva/rabbitmq-stream client library.

The dependencies are installed during the exection of the examples using Mix.install/1

Code

Code examples are executed via elixir:

Tutorial one: "Hello World!":

# run the publisher
elixir publish.exs

# run the consumer
elixir consume.exs

To learn more, see VictorGaiva/rabbitmq-stream.