Clojure futures use the send-off thread-pool (unbounded), which is defined 
like this:

from Agent.java:
final public static ExecutorService soloExecutor = 
Executors.newCachedThreadPool(createThreadFactory("clojure-agent-send-off-pool-%d",
 
sendOffThreadPoolCounter));

So, it's using executors.  If you want more control, you can maybe look at 
JMeter's implementation for guidance, or use its API directly for test 
plans.  Not sure what the simplest route is for your needs.  

-- 
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

Reply via email to