I want to build a producer-consumer program in clojure. The requirement is the consumer can drag items from the queue while the producer is putting messages into the queue, if using java I will use ConcurrentLinkedQueue, but I'm not very sure how to do it in clojure using the immutable collections, please help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
If you just want 1 consumer, just use an agent. If not see see Clojure Producer Consumer or Producer consumer with qualifications |
||||
|
|
|
I think you could use Clojure's immutable queue inside of an atom, which would give you atomic access to the queue. |
||||
|
|