immortal: Spawn threads that never die (unless told to do so)

[ concurrency, library, mit ] [ Propose Tags ]

A small library to create threads that never die. This is useful e.g. for writing servers.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.2.2, 0.2.2.1, 0.3
Change log CHANGELOG.md
Dependencies base (>=4.5 && <5), stm, unliftio-core (>=0.1.1.0) [details]
License MIT
Author Roman Cheplyaka
Maintainer roma@ro-che.info
Category Concurrency
Home page https://github.com/feuerbach/immortal
Source repo head: git clone https://github.com/feuerbach/immortal.git
Uploaded by RomanCheplyaka at 2018-04-16T08:18:15Z
Distributions LTSHaskell:0.3, NixOS:0.3, Stackage:0.3
Reverse Dependencies 7 direct, 1 indirect [details]
Downloads 7079 total (54 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-04-16 [all 1 reports]

Readme for immortal-0.3

[back to package description]

immortal

A small library to create threads that never die. This is useful e.g. for writing servers.

import qualified Control.Immortal as Immortal
import Control.Concurrent (threadDelay)
import Control.Monad (forever)

main = do
  -- start an immortal thread
  _thread <- Immortal.create $ \ _thread -> do
    -- do stuff

  -- in the main thread, sleep until interrupted
  -- (e.g. with Ctrl-C)
  forever $ threadDelay maxBound