Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
doc
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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

About

Queue using ETS (Erlang).

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.