Add Streamly.Data.Stream.Concurrent

This commit is contained in:
Adithya Kumar 2022-10-06 21:36:14 +05:30
parent ba01fcd958
commit e061109f76
3 changed files with 18 additions and 0 deletions

View File

@ -17,6 +17,9 @@
* Signature changed: Streamly.Data.Unfold.fromStream
* Add `Streamly.Data.Stream.Concurrent` that provide combinators for handling
non-serial streams.
### Deprecations
* In `Streamly.Data.Fold`:

View File

@ -0,0 +1,14 @@
-- |
-- Module : Streamly.Data.Stream.Concurrent
-- Copyright : (c) 2022 Composewell Technologies
-- License : BSD-3-Clause
-- Maintainer : streamly@composewell.com
-- Stability : released
-- Portability : GHC
module Streamly.Data.Stream.Concurrent
( MonadAsync
)
where
import Streamly.Internal.Control.Concurrent (MonadAsync)

View File

@ -505,6 +505,7 @@ library
-- Exposed modules
, Streamly.Prelude
, Streamly.Data.Stream.Concurrent
-- Network/IO
, Streamly.Network.Socket