conejo v0.3.3 Conejo

Conejo is an OTP application/library which will help you to define and keep up your AMQP/RabbitMQ consumers and publishers (or producers).

This application is based on (pma/amqp)[https://github.com/pma/amqp] library.

Before your app is started, Conejo will connect to the chosen broker establishing a supervised connection. In order to get it, Conejo needs the following configuration in the config files:

config :conejo,
  host: "my_host",
  port: 5672,
  username: "user",
  password: "pass"

check Conejo.Consumer in order to know the its configuration.

Conejo.Publisher does not need any configuration.