J
Joel Lyons
I am using Async delegates to make many RPC calls (each of which will take a
max of a couple seconds). This seemed acceptable since the threads aren't
really doing much on the local machine (the remote machines are doing all
the work).
Don't Async delegates actually use the thread pool? Doesn't this mean I'm
limited to 25 calls at a time?
Can I increase the size of the thread pool in my process?
Can I force the async delegates to use new threads instead of from the
thread pool?
Is there a better method for making many RPC calls?
-Joel
max of a couple seconds). This seemed acceptable since the threads aren't
really doing much on the local machine (the remote machines are doing all
the work).
Don't Async delegates actually use the thread pool? Doesn't this mean I'm
limited to 25 calls at a time?
Can I increase the size of the thread pool in my process?
Can I force the async delegates to use new threads instead of from the
thread pool?
Is there a better method for making many RPC calls?
-Joel