Popularity
3.5
Growing
Activity
0.0
Stable
5
2
1
Monthly Downloads: 187
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.
Clean code begins in your IDE with SonarLint
Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
Promo
www.sonarlint.org
Do you think we are missing an alternative of async-timer or a related project?
README
async-timer

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"