On Monday, February 16, 2015 at 9:42:31 PM UTC-5, Erik Price wrote:
>
> Yes, the producer’s put will block until the consumer takes, but doesn’t 
> this still involve an eager initial request (so that the producer will have 
> something to put in the first place, so that it can block)?
>
The producer can put a pair of a token and the result of an HTTP request 
on, waiting to perform the HTTP request until the blocking put of the token 
has completed. The consumer can, when it wants the results of an HTTP 
request, perform a take to get a token, discard that, and do another take 
to get the result of the HTTP request. The first take unblocks the producer 
to perform the request in the first place.
 

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to