Difference between revisions of "Conduit"

From HaskellWiki
Jump to navigation Jump to search
m (Add link to Enumerator and Iteratee wiki page)
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
   
   
Conduits are an approach to the streaming data problem. It is meant as an alternative to enumerators/iterators
+
Conduits are an approach to the streaming data problem. It is meant as an alternative to [[Enumerator_and_iteratee|enumerators/iterators]]
   
   
 
== Links ==
 
== Links ==
   
  +
* [https://www.fpcomplete.com/user/snoyberg/library-documentation/conduit-overview Conduit overview] by M. Snoyman
* [http://www.yesodweb.com/book/conduits An explanation of conduits]
 
   
 
* [http://www.yesodweb.com/book/conduits An explanation of conduits]. Chapter from the [[Yesod]] book.
* [http://hackage.haskell.org/package/conduit The conduit package]
 
  +
 
* [http://hackage.haskell.org/package/conduit The conduit package on Hackage]
   
 
* [http://www.haskell.org/pipermail/beginners/2012-March/009580.html An example program] (Beginners mailing list)
 
* [http://www.haskell.org/pipermail/beginners/2012-March/009580.html An example program] (Beginners mailing list)

Latest revision as of 02:42, 13 July 2019

This article is a stub. You can help by expanding it.


Conduits are an approach to the streaming data problem. It is meant as an alternative to enumerators/iterators


Links

  • wai, a package that uses the conduit package


Blog articles