cabal-version: 2.4 name: monad-schedule version: 0.1.0.0 license: MIT license-file: LICENSE author: Manuel Bärenz maintainer: programming@manuelbaerenz.de synopsis: A new, simple, composable concurrency abstraction. description: A monad @m@ is said to allow scheduling if you can pass a number of actions @m a@ to it, and those can be executed at the same time concurrently. You can observe the result of the actions after some time: Some actions will complete first, and the results of these are returned then as a list @'NonEmpty' a@. Other actions are still running, and for these you will receive continuations of type @m a@, which you can further run or schedule to completion as you like. category: Concurrency extra-source-files: CHANGELOG.md library exposed-modules: Control.Monad.Schedule.Class Control.Monad.Schedule.RoundRobin Control.Monad.Schedule.Sequence Control.Monad.Schedule.Trans Control.Monad.Schedule.OSThreadPool build-depends: base >= 4.13.0 && <= 4.17 , stm >= 2.5 , transformers >= 0.5 , free >= 5.1 , time-domain >= 0.1 hs-source-dirs: src default-language: Haskell2010