Difference between revisions of "Conduit"

From HaskellWiki
Jump to navigation Jump to search
(Create subsection "Blog articles"; added a link to "pipes-like conduit")
(→‎Links: Added a link to wai)
Line 14: Line 14:
   
 
* [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)
  +
  +
* [http://hackage.haskell.org/package/wai wai], a package that uses the conduit package
   
 
* [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]

Revision as of 21:34, 14 May 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

  • wai, a package that uses the conduit package


Blog articles