streamly/README.md
2017-09-04 16:07:46 +05:30

1.1 KiB

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.