Concurrency demos
From HaskellWiki
(Difference between revisions)
(add link to chat server) |
(→Examples: Move link) |
||
| Line 6: | Line 6: | ||
* [[/Graceful exit|Signal that you want to gracefully exit another thread]] | * [[/Graceful exit|Signal that you want to gracefully exit another thread]] | ||
* [[/Two reader threads|Passing messages across a single chan to two readers]] | * [[/Two reader threads|Passing messages across a single chan to two readers]] | ||
| - | * [[ | + | * [[Implement a chat server|Chat server - using a single channel for a variable number of readers]] |
* [[/Simple producer and consumer|Passing IO events lazily from a producer to a consumer thread]] | * [[/Simple producer and consumer|Passing IO events lazily from a producer to a consumer thread]] | ||
Revision as of 19:30, 6 July 2007
This page collects examples of concurrent and parallel programming in Haskell.
1 Examples
- Riemann's Zeta function approximation
- Signal that you want to gracefully exit another thread
- Passing messages across a single chan to two readers
- Chat server - using a single channel for a variable number of readers
- Passing IO events lazily from a producer to a consumer thread
2 More examples
A large range of small demonstration programs for using concurrent and
parallel Haskell are in the Haskell concurrency regression tests. In particular, they show the use ofMVars
forkIO
