Skip to content

sdanzan/alambic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alambic Build Status Hex pm

An Elixir collection of small utilities.

  • Alambic.Semaphore: a simple semaphore implementation intended for simple resource control scenarios.
  • Alambic.CountDown: a simple countdown latch implementation intended for simple fan in scenarios.
  • Alambic.BlockingQueue: a simple shared queue allowing consuming via the Enum and Stream modules.
  • Alambic.BlockingCollection: a protocol exposing standard functions to manipulate blocking collections.

Installation

Add the github repository to your mix dependencies:

  1. Add alambic to your list of dependencies in mix.exs:

    def deps do [{:alambic, git: "https://github.com/sdanzan/alambic.git"}] end

  2. Ensure alambic is started before your application:

    def application do [applications: [:alambic]] end

If available in Hex, the package can be installed as:

  1. Add alambic to your list of dependencies in mix.exs:

    def deps do [{:alambic, "~> 0.1.0"}] end

  2. Ensure alambic is started before your application:

    def application do [applications: [:alambic]] end

About

A collection of small elixir modules

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages