Popularity
7.5
Stable
Activity
0.0
Stable
29
5
4

Monthly Downloads: 37
Programming language: Haskell
License: MIT License
Tags: Concurrency     Threads    
Latest version: v1.2.0.1

threads-supervisor alternatives and similar packages

Based on the "threads" category.
Alternatively, view threads-supervisor alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of threads-supervisor or a related project?

Add another 'threads' Package

README

Threads Supervisor

Simple, IO-based, forkIO-friendly threads supervision library.

Changelog

  • 1.2.0.0 (Breaking changes, sorry!)

    • Remove SupervisorSpec
    • Rename monitor to monitorWith
  • 1.1.0.0

  • 1.0.4.1

  • 1.0.4.0

    • Split up modules into Types, Bounded and Supervisor
    • The Bounded module offers a SupervisorSpec variant which writes SupervisionEvent into a TBQueue
    • The Supervisor module offers a SupervisorSpec variant which writes SupervisionEvent into a TQueue. Programmers are expected to read from the eventStream queue to avoid space leaks.
  • 1.0.3.0

    • Added restart throttling using RetryPolicy from the retry package.

Example

Start from Control.concurrent.Supervisor.Tutorial. Other example can be found inside examples.

Installation

cabal install threads-supervisor

or

stack install threads-supervisor

If you have downloaded the latest master from Github:

cabal install

or

stack install

Testing

cabal install --enable-tests
cabal test

or

stack test

Contributions

This library scratches my own itches, but please fork away! Pull requests are encouraged to implement the part of the API you need.

Contributors

  • Alfredo Di Napoli (initial author)
  • Sam Rijs (@srijs)