High performance, concurrent functional programming abstractions
Go to file
2017-09-08 22:40:53 +05:30
benchmark Add fair bind benchmarks 2017-09-08 22:40:53 +05:30
examples Add the fastest search engine example 2017-09-07 21:04:06 +05:30
src Add parallel and interleaved bind operations 2017-09-08 21:29:02 +05:30
test Add parallel and interleaved bind operations 2017-09-08 21:29:02 +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 ghc 7.10.3 deps, add semigroups 2017-09-08 22:40:23 +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 Fix build for ghc-7.10.3 2017-09-05 13:34:39 +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.