<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"> In [1], there is<br>
documentation on how to run each node or each service in their own<br>
threads, but not each request. </blockquote><div><br></div><div>There is no way of spinning up a thread for each individual request -- I doubt this is what you want anyway, as it's incredibly wasteful.  If you service the callback queue associated with the requests from multiple threads (either using an AsyncSpinner or manually with callOne()), they'll get serviced concurrently.</div>

<div><br></div><div>Josh</div></div>