Difference between revisions of "Conduit"

From HaskellWiki
Jump to navigation Jump to search
(New page)
 
(5 intermediate revisions by 2 users 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]
+
* [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]. 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://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 10:39, 6 September 2013

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