Difference between revisions of "Conduit"

From HaskellWiki
Jump to navigation Jump to search
(Added a link to an example program)
(3 intermediate revisions by one other user not shown)
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 ==
   
* [http://www.yesodweb.com/book/conduit An explanation of conduits]
+
* [http://www.yesodweb.com/book/conduits An explanation of conduits]
   
 
* [http://hackage.haskell.org/package/conduit The conduit package]
 
* [http://hackage.haskell.org/package/conduit The conduit package]
   
 
* [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]
   
  +
* [http://www.yesodweb.com/blog/2012/03/more-powerful-conduit A More Powerful Conduit]; a blog article
 
  +
=== Blog articles ===
  +
  +
* [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 21:58, 5 June 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