I would like to how can we implement producer/consumer in a functional programming language like Haskell? and how it will be different from an Imperative language? My understanding of functional programming language is primitive. Any help will be appreciated.
|
1
|
|||
|
|
|
A producer/consumer abstraction using preemptive threads and messages passed through a channel:
You would use a similar model in Erlang. Threads to represent the consumer and producer, and a shared pipe of messages between them, each acting asynchronously. |
||
|
|
|
I will add to |
||
|
|
|
|
Besides the stateful approaches mentioned by Norman and Don, you can also think of normal function application and laziness as producer and consumer. Here is a producer for the natural numbers:
And here is a consumer that computes the squares of those numbers:
Producers such as |
||
|
