https://github.com/markfchavez/queuer_otp
Queue using GenServer
https://github.com/markfchavez/queuer_otp
elixir genserver otp
Last synced: about 1 year ago
JSON representation
Queue using GenServer
- Host: GitHub
- URL: https://github.com/markfchavez/queuer_otp
- Owner: MarkFChavez
- Created: 2017-06-21T13:56:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-21T13:57:37.000Z (about 9 years ago)
- Last Synced: 2025-02-06T15:53:09.538Z (over 1 year ago)
- Topics: elixir, genserver, otp
- Language: Elixir
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Queuer
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add `queuer` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:queuer, "~> 0.1.0"}]
end
```
2. Ensure `queuer` is started before your application:
```elixir
def application do
[applications: [:queuer]]
end
```
## Run tests
```ruby
mix test
```
All tests should pass. If there are failing test, please add an issue.