Skip to content
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.

Latest commit

 

History

History
50 lines (31 loc) · 1.2 KB

README.md

File metadata and controls

50 lines (31 loc) · 1.2 KB

erqueue - Queue using ETS.

Copyright (c) 2014 Stéphane Wirtel.

Version: 0.1.0

Description

The erqueue module implements a queue using the ETS module of Erlang.

Usage

Example

Queue = erqueue:new(),
true = erqueue:is_empty(Queue),
ok = erqueue:put(Queue, <<"hello world!">>),
{value, Value} = erqueue:get(Queue),
ok = erqueue:close(Queue).

Ownership and License

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.

Examples

Development

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

Modules

erqueue