async-timer

Provides API for timer based execution of IO actions

https://github.com/mtesseract/async-timer

Version on this page:0.1.4.0
LTS Haskell 16.31:0.2.0.0
Stackage Nightly 2020-06-16:0.2.0.0
Latest on Hackage:0.2.0.0

See all snapshots async-timer appears in

BSD-3-Clause licensed by Moritz Schulte
Maintained by [email protected]
This version can be pinned in stack with:async-timer-0.1.4.0@sha256:406d2233c98788d4a9608c9c74ecd1f445d8173920b4b39cb22cc78792ff3f41,2002

Module documentation for 0.1.4.0

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"