Source codeContentsIndex
Control.Concurrent.TxEvent.ASChan
Portabilitynon-portable (requires TxEvent)
Stabilityexperimental
Maintainermfluet@acm.org
Contents
Asynchronous channels
Description

Asynchronous channels.

This library provides asynchronous (i.e., buffered) channels.

Synopsis
data ASChan a
newASChan :: IO (ASChan a)
recvASChanEvt :: ASChan a -> Evt a
sendASChanEvt :: ASChan a -> a -> Evt ()
Asynchronous channels
data ASChan a
The type of asynchronous channels.
newASChan :: IO (ASChan a)
Create a new asynchronous channel.
recvASChanEvt :: ASChan a -> Evt a
Receive a value on the channel.
sendASChanEvt :: ASChan a -> a -> Evt ()
Send a value on the channel.
Produced by Haddock version 0.7