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

[ concurrency, library, mit ] [ Propose Tags ]

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), lifted-base (>=0.2), monad-control (>=0.3), stm, transformers-base (>=0.4) [details]
License MIT
Author Roman Cheplyaka
Maintainer roma@ro-che.info
Category Concurrency
Home page https://github.com/feuerbach/immortal
Uploaded by RomanCheplyaka at 2016-03-17T10:25:27Z
Distributions LTSHaskell:0.3, NixOS:0.3, Stackage:0.3
Reverse Dependencies 7 direct, 1 indirect [details]
Downloads 7062 total (48 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2016-03-17 [all 1 reports]

Readme for immortal-0.2.2

[back to package description]

immortal

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

import qualified System.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