Difference between revisions of "Conduit"

From HaskellWiki
Jump to navigation Jump to search
Line 9: Line 9:
 
== 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)

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