concurrent-split

MVars and Channels with distinguished input and output side

Version on this page:0.0.1
LTS Haskell 22.13:0.0.1.1
Stackage Nightly 2024-03-14:0.0.1.1
Latest on Hackage:0.0.1.1

See all snapshots concurrent-split appears in

BSD-3-Clause licensed and maintained by Henning Thielemann
This version can be pinned in stack with:concurrent-split-0.0.1@sha256:9b5d8657852fecfc56464dc05f519e7861d35fb19d5a0f7c19801960c11fab6f,1914

Module documentation for 0.0.1

Depends on 1 package(full list with versions):
Used by 1 package in nightly-2017-10-28(full list with versions):

MVars and Channels with distinguished input and output side. When threads communicate via an MVar or a Chan there are often clearly defined roles, which thread is the sender and which one is receiver. We provide wrappers around the standard concurrency communication channels that make the distinction clear and type safe.

For example, if a function has a parameter of type TChan.In then it is sure that it will only write to that channel. Additionally if the compiler warns about an unused TChan.Out that was created by TChan.new then you know that the receiver part of your communication is missing.

This package requires only Haskell 98.

Related packages:

  • stm-split: transactional communication in STM monad

  • chan-split: follows the same idea as this package and stm-split but requires multi-parameter type classes with functional dependencies.

  • privileged-concurrency:

  • split-channel: