Difference between revisions of "Conduit"

From HaskellWiki
Jump to navigation Jump to search
(→‎Links: Added a link to "Conduits vs. Pipes")
(Create subsection "Blog articles"; added a link to "pipes-like conduit")
Line 5: Line 5:
   
 
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 enumerators/iterators
  +
   
 
== Links ==
 
== Links ==
Line 16: Line 17:
 
* [http://hackage.haskell.org/packages/archive/pkg-list.html#cat:conduit Packages on Hackage in the conduit category]
 
* [http://hackage.haskell.org/packages/archive/pkg-list.html#cat:conduit Packages on Hackage in the conduit category]
   
* [http://twanvl.nl/blog/haskell/conduits-vs-pipes Conduits vs. Pipes] (blog article)
 
   
  +
=== Blog articles ===
* [http://www.yesodweb.com/blog/2012/03/more-powerful-conduit A More Powerful Conduit] (blog article)
 
  +
  +
* [http://www.yesodweb.com/blog/2012/03/pipes-like-conduit pipes-like conduit]
  +
 
* [http://twanvl.nl/blog/haskell/conduits-vs-pipes Conduits vs. Pipes]
  +
 
* [http://www.yesodweb.com/blog/2012/03/more-powerful-conduit A More Powerful Conduit]

Revision as of 11:37, 5 April 2012

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


Blog articles