control-event-1.2.0.0: Event scheduling system.

Control.Event.Relative

Description

This module uses Haskell concurrency libraries to build an extremely simple event system that should perform better than the Control.Event module but does not provide features such as STM action scheduling.

Synopsis

Documentation

addEvent :: Int -> IO () -> IO EventIdSource

'addEvent delay action' will delay for delay microseconds then execute action. An EventId is returned, allowing the event to be canceled.

delEvent :: EventId -> IO BoolSource

'delEvent eid' deletes the event and returns True if the event was deleted. If False is returned then the time elapsed and the action was forked off.