Popularity
3.6
Declining
Activity
0.0
Stable
5
3
1

Monthly Downloads: 154
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Concurrency     Async    
Latest version: v0.1.2

async-timer alternatives and similar packages

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

Do you think we are missing an alternative of async-timer or a related project?

Add another 'async' Package

README

async-timer Hackage version Stackage version Build Status

About

This is a lightweight package built on top of the async package providing easy to use periodic timers. This can be used for executing IO actions periodically.

Example:

      let conf = defaultTimerConf & timerConfSetInitDelay  500 -- 500 ms
                                  & timerConfSetInterval  1000 -- 1 s

      withAsyncTimer conf $ \ timer -> do
        forM_ [1..10] $ \_ -> do
          timerWait timer
          putStrLn "Tick"