conceit: Concurrent actions that may fail

[ bsd3, concurrency, library ] [ Propose Tags ]

A version of the async package's Control.Concurrent.Async.Concurrently for which the actions may fail


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.2.1.0, 0.2.2.0, 0.2.2.1, 0.3.0.0, 0.3.1.0, 0.3.2.0, 0.4.0.0, 0.5.0.0
Change log CHANGELOG
Dependencies base (>=4.4 && <5), bifunctors (>=4.1 && <5), exceptions (>=0.6 && <1.0), mtl (>=2.0 && <2.3), semigroupoids (>=4 && <5), transformers (>=0.2 && <0.5), void (>=0.6 && <1.0) [details]
License BSD-3-Clause
Author Daniel Díaz Carrete
Maintainer diaz_carrete@yahoo.com
Category Concurrency
Source repo head: git clone https://github.com/danidiaz/conceit.git
Uploaded by DanielDiazCarrete at 2015-03-28T15:50:31Z
Distributions NixOS:0.5.0.0
Reverse Dependencies 6 direct, 1 indirect [details]
Downloads 7552 total (30 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-03-28 [all 1 reports]

Readme for conceit-0.2.2.1

[back to package description]

conceit

A version of the Concurrently applicative from Simon Marlow's async package, with the difference that the concurrent computation stops if any of the actions returns a Left value, not only in the case of exceptions.

The internals have been copied wholesale from Concurrently, with modifications to support the new behaviour.

Includes a useful Bifunctor instance.