timers-updatable-0.1: timers which are updatable in the remaining time

System.Timer.Updatable

Description

An updatable timer is a timer for which it is possible to update the remaining time.

Any number of threads can be hanged on one timer and they will all continue when the timer rings or when it is destroyed.

Parallel and serial update politics are implemented.

In the example we start a timer with a time to wait of 10 seconds, hang 2 threads which will wait for it to finish and update it after 5 seconds to wait for 6 seconds. It will complete and run its action and the hanged threads after 11 seconds because of its parallel nature. The serial timer would have ringed after 16 seconds.

 import Control.Concurrent
 import System.Timer.Updatable
 import Data.Maybe
 main = do
  t <- parallel (return 5) $ 10^7
  forkIO $ wait t >>= print . (+1) . fromJust 
  forkIO $ wait t >>= print . (+2) . fromJust
  threadDelay $ 5 * 10 ^ 6
  renew t $ 6 * 10 ^ 6
  wait t >>= print . fromJust 

Synopsis

Documentation

data Updatable a Source

Abstract timers that can be updated. Hanging via wait function can be done by any number of threads, which is sinchronization.

Constructors

Updatable 

Fields

wait :: IO (Maybe a)

wait until the timer rings, or signal Nothing if timer is destroyed

renew :: Delay -> IO ()

update the delay in the timer

kill :: IO ()

destoy the timer

parallelSource

Arguments

:: IO a

the action to run when timer rings

-> Delay

time to wait

-> IO (Updatable a)

the updatable parallel timer

Create and start a parallel updatable timer. This timer renew actions will start parallel timers. Last timer that is over will compute the given action.

serialSource

Arguments

:: IO a

the action to run when timer rings

-> Delay

time to wait

-> IO (Updatable a)

the updatable parallel timer

Create and start a serial updatable timer. This timer renew action will schedule new timer after the running one. The timer will run the given action after the sum of all scheduled times is over.

type Delay = IntSource

A delay in microseconds