High performance, concurrent functional programming abstractions
Go to file
2017-09-22 10:33:14 +05:30
benchmark Fix parallel binds, pass the context where needed 2017-09-22 10:33:14 +05:30
examples replace error with fail 2017-09-18 16:07:52 +05:30
src Fix parallel binds, pass the context where needed 2017-09-22 10:33:14 +05:30
test Fix race condition in a parallel test 2017-09-21 00:12:09 +05:30
.travis.yml Fix build/travis config for ghc 7.10.3 2017-09-05 15:18:49 +05:30
appveyor.yml Add travis, appveyor ci files 2017-08-30 15:16:14 +05:30
asyncly.cabal Fix build for 7.10.3 2017-09-14 08:40:50 +05:30
LICENSE Use BSD 3-clause license for the lazy implementation 2017-09-04 15:56:05 +05:30
README.md Update readme with overview 2017-09-04 16:07:46 +05:30
stack.yaml rebuild when ghc options change 2017-09-20 16:11:58 +05:30

Asyncly

Build Status Windows Build status Coverage Status

Asyncly is best described as a superset of list transformer (ListT) or logic programming monad (LogicT) with additional support for concurrent operation. Monadic streams of data can be composed using serial or parallel compositions with or without fair interleaving, enabling a high level composition of concurrent tasks without requiring knowledge of low level concurrency primitives. The programmer just expresses whether a task can run in parallel with another. Threads, synchronization and concurrency rate control is handled automatically.

This library was originally inspired by the transient package authored by Alberto G. Corona.