| Maintainer | leon@melding-monads.com |
|---|---|
| Safe Haskell | Safe-Infered |
Control.Concurrent.Chan.Split
Description
This package provides an unbounded, imperative queue that is supposed to
be thread safe and asynchronous exception safe. It is essentially the
same communication abstraction as Chan, except
that each channel is split into separate sending and receiving ends,
called SendPort and ReceivePort respectively. This has at least two
advantages:
- Program behavior can be more finely constrained via the type system.
- Channels can have zero
ReceivePortsassociated with them. Messages written to such a channel disappear into the aether and can be garbage collected. Note thatReceivePortscan be subsequently attached to such a channel vialisten.
A channel can have multiple ReceivePorts. This results in a publish-
subscribe pattern of communication: every element will be delivered to
every port. Alternatively, multiple threads can read from a single
port. This results in a push-pull pattern of communication, similar to
ZeroMQ: every element will be delivered to exactly one thread. Of
course both can be used together to form hybrid patterns of
communication.
A channel can only have one SendPort. However multiple threads can
can safely write to a single port, allowing effects similar to multiple
SendPorts.
Some of the tradeoffs of split-channel compared to Cloud Haskell's
Remote.Channel are:
-
split-channelis restricted to in-process communications only. -
split-channelhas no restriction on the type of values that may be communicated. - There is a quasi-duality between the two approaches: Cloud Haskell's
ReceivePortsare special whereassplit-channel'sSendPortsare special. -
ReceivePortscan be, which allows for considerably more efficient publish-subscribe communications than supported by Cloud Haskell at the present time.duplicated
- data SendPort a
- data ReceivePort a
- new :: IO (SendPort a, ReceivePort a)
- newSendPort :: IO (SendPort a)
- listen :: SendPort a -> IO (ReceivePort a)
- duplicate :: ReceivePort a -> IO (ReceivePort a)
- receive :: ReceivePort a -> IO a
- send :: SendPort a -> a -> IO ()
- fold :: (a -> b -> b) -> ReceivePort a -> IO b
- unsafeFold :: (a -> b -> b) -> ReceivePort a -> IO b
Documentation
SendPorts represent one end of the channel. There is only one
SendPort per channel, though it can be used from multiple threads.
Messages can be sent to the channel using send.
data ReceivePort a Source
ReceivePorts represent the other end of a channel. A channel
can have many ReceivePorts, which all receive the same messages in
a publish/subscribe like manner. A single ReceivePort can be used
from multiple threads, where every message will be delivered to a
single thread in a push/pull like manner. Use receive to fetch
messages from the channel.
new :: IO (SendPort a, ReceivePort a)Source
Creates a new channel and a (SendPort, ReceivePort) pair representing
the two sides of the channel.
newSendPort :: IO (SendPort a)Source
Produces a new channel that initially has zero ReceivePorts.
Any elements written to this channel before a reader is
will be eligible for garbage collection.
listening
listen :: SendPort a -> IO (ReceivePort a)Source
Create a new ReceivePort attached the same channel as a given
SendPort. This ReceivePort starts out empty, and remains so
until more elements are written to the SendPort.
duplicate :: ReceivePort a -> IO (ReceivePort a)Source
Create a new ReceivePort attached to the same channel as another
ReceivePort. These two ports will receive the same messages.
Any messages in the channel that have not been consumed by the
existing port will also appear in the new port.
receive :: ReceivePort a -> IO aSource
Fetch an element from a channel. If no element is available, it blocks
until one is. Can be used in conjunction with System.Timeout.
send :: SendPort a -> a -> IO ()Source
Send an element to a channel. This is asynchronous and does not block.
fold :: (a -> b -> b) -> ReceivePort a -> IO bSource
A right fold over a receiver, a generalization of getChanContents
where getChanContents = fold (:). Note that the type of fold
implies that the folding function needs to be sufficienctly non-strict,
otherwise the result cannot be productive.
unsafeFold :: (a -> b -> b) -> ReceivePort a -> IO bSource
unsafeFold should usually be called only on readers that are not
subsequently used in other channel operations. Otherwise it may be
possible that the (non-)evaluation of pure values will cause race
conditions inside IO computations. The safer fold uses duplicate
to satisfy this condition.