Safe Haskell | Trustworthy |
---|---|
Language | Haskell2010 |
This module provides scalable event notification for file descriptors and timeouts.
This module should be considered GHC internal.
- ---------------------------------------------------------------------------
Synopsis
- data EventManager
- data TimerManager
- getSystemEventManager :: IO (Maybe EventManager)
- new :: IO EventManager
- getSystemTimerManager :: IO TimerManager
- data Event
- evtRead :: Event
- evtWrite :: Event
- type IOCallback = FdKey -> Event -> IO ()
- data FdKey
- data Lifetime
- registerFd :: EventManager -> IOCallback -> Fd -> Event -> Lifetime -> IO FdKey
- unregisterFd :: EventManager -> FdKey -> IO ()
- unregisterFd_ :: EventManager -> FdKey -> IO Bool
- closeFd :: EventManager -> (Fd -> IO ()) -> Fd -> IO ()
- type TimeoutCallback = IO ()
- data TimeoutKey
- registerTimeout :: TimerManager -> Int -> TimeoutCallback -> IO TimeoutKey
- updateTimeout :: TimerManager -> TimeoutKey -> Int -> IO ()
- unregisterTimeout :: TimerManager -> TimeoutKey -> IO ()
Types
data EventManager #
The event manager state.
data TimerManager #
The event manager state.
Creation
new :: IO EventManager #
Create a new event manager.
Registering interest in I/O events
An I/O event.
type IOCallback = FdKey -> Event -> IO () #
Callback invoked on I/O events.
A file descriptor registration cookie.
The lifetime of an event registration.
Since: base-4.8.1.0
OneShot | the registration will be active for only one event |
MultiShot | the registration will trigger multiple times |
registerFd :: EventManager -> IOCallback -> Fd -> Event -> Lifetime -> IO FdKey #
registerFd mgr cb fd evs lt
registers interest in the events evs
on the file descriptor fd
for lifetime lt
. cb
is called for
each event that occurs. Returns a cookie that can be handed to
unregisterFd
.
unregisterFd :: EventManager -> FdKey -> IO () #
Drop a previous file descriptor registration.
unregisterFd_ :: EventManager -> FdKey -> IO Bool #
Drop a previous file descriptor registration, without waking the event manager thread. The return value indicates whether the event manager ought to be woken.
closeFd :: EventManager -> (Fd -> IO ()) -> Fd -> IO () #
Close a file descriptor in a race-safe way.
Registering interest in timeout events
type TimeoutCallback = IO () #
Callback invoked on timeout events.
data TimeoutKey #
A timeout registration cookie.
Instances
Eq TimeoutKey # | Since: base-4.7.0.0 |
Defined in GHC.Event.TimerManager (==) :: TimeoutKey -> TimeoutKey -> Bool Source # (/=) :: TimeoutKey -> TimeoutKey -> Bool Source # |
registerTimeout :: TimerManager -> Int -> TimeoutCallback -> IO TimeoutKey #
Register a timeout in the given number of microseconds. The
returned TimeoutKey
can be used to later unregister or update the
timeout. The timeout is automatically unregistered after the given
time has passed.
updateTimeout :: TimerManager -> TimeoutKey -> Int -> IO () #
Update an active timeout to fire in the given number of microseconds.
unregisterTimeout :: TimerManager -> TimeoutKey -> IO () #
Unregister an active timeout.