The threadpool is a process specific construct and SetMaxThreads in v2.0 specifies the maximum number of thread pool threads for that process
Regards
Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk
Thanks for all the responses. In my last, I just meant that SetMaxThreads
(if and when it exists) could also be capped at a theoretical max. The
documentation says that the max is some calculation on the number of
processes, available memory, cpu utilization, etc. If the max is 25,
SetMaxThreads=8, for example, would be a way for the programmer to
intentionally throttle back how much of the available pie he wanted his
program to take.
SetMinThreads, conceptually, seems less of a throttle, since it's going to
make sure x threads are created even if you only queue a smaller number of
items. That's all I was saying.
Will SetMaxThreads in 2.0 also be imposing a maximum cap or will it be wide
open?
Thanks
-mark