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

matrixise/erqueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages