https://github.com/mrkaspa/gen_amqp
Cool features on top of AMQP using Genserver Elixir patterns
https://github.com/mrkaspa/gen_amqp
amqp elixir otp
Last synced: 8 months ago
JSON representation
Cool features on top of AMQP using Genserver Elixir patterns
- Host: GitHub
- URL: https://github.com/mrkaspa/gen_amqp
- Owner: mrkaspa
- License: mit
- Created: 2016-12-07T16:34:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-02-26T15:30:38.000Z (over 5 years ago)
- Last Synced: 2025-09-25T22:53:58.358Z (9 months ago)
- Topics: amqp, elixir, otp
- Language: Elixir
- Size: 123 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GenAMQP Microservices Utilities
GenAMQP is a set of utilities to make microservices sync or async over RabbitMQ
## Installation
If [available in Hex](https://hex.pm/packages/gen_amqp), the package can be installed as:
Add `gen_amqp` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:gen_amqp, "~> 5.0.0"}]
end
def application do
[applications: [:gen_amqp]]
end
```