Conduit
From HaskellWiki
(Difference between revisions)
(Added a link to an example program) |
m (→Links) |
||
| (3 intermediate revisions 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/ | + | * [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] | + | |
| + | === 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] | ||
Current revision
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
1 Links
- An example program (Beginners mailing list)
- wai, a package that uses the conduit package
