-
Notifications
You must be signed in to change notification settings - Fork 2
/
split-channel.cabal
44 lines (40 loc) · 1.67 KB
/
split-channel.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: split-channel
version: 0.2.0.1
synopsis:
Control.Concurrent.Chan split into sending and receiving halves.
description:
This module splits Control.Concurrent.Chan into sending and receiving
halves, which allows the type system to more finely constrain program
behavior. As a secondary benefit, messages written to channels with
no receive ports associated with them can be reliably garbage collected.
.
In addition, this module incorporates several of clean-ups and additions
to the venerable Chan. Most notably, the deprecated thread-unsafe
functions have been removed, the ability to @duplicate@ Receive Ports
has been added, the @sendMany@ operation allows for multiple messages
to be sent atomically, and the @split@ operation turns a single
channel into two.
license: MIT
license-file: LICENSE
author: Leon P Smith, Joey Adams
maintainer: [email protected]
copyright: (c) 2012-2013 Leon P Smith
category: Concurrency
build-type: Custom
cabal-version: >=1.8
extra-source-files:
doc/split.png
library
hs-source-dirs: src
exposed-modules: Control.Concurrent.Chan.Split
Control.Concurrent.Chan.Split.Internal
other-modules: Control.Concurrent.Chan.Split.Implementation
build-depends: base >= 4.3 && < 5
ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-unused-do-bind
source-repository head
type: git
location: http://github.com/lpsmith/split-channel
source-repository this
type: git
location: http://github.com/lpsmith/split-channel
tag: v0.2.0.1