Copyright (c) 2014 Stéphane Wirtel.
Version: 0.1.0
The erqueue module implements a queue using the ETS module of Erlang.
Queue = erqueue:new(),
true = erqueue:is_empty(Queue),
ok = erqueue:put(Queue, <<"hello world!">>),
{value, Value} = erqueue:get(Queue),
ok = erqueue:close(Queue).
The contributors are listed in AUTHORS. This project uses the MPL v2 license, see LICENSE.
erqueue uses the C4.1 (Collective Code Construction Contract) process for contributions.
Under C4.1 process, you are more than welcome to help us by:
- join the discussion over anything from design to code style
- try out and submit issue reports or feature requests
- pick a task in issues and get it done
- for the repository and have your own fixes
- send us pull requests
erqueue |