ThreadPool::GetMinThreads Method
Retrieves the minimum number of threads the thread pool creates on demand, as new requests are made, before switching to an algorithm for managing thread creation and destruction.
Assembly: mscorlib (in mscorlib.dll)
public: static void GetMinThreads( [OutAttribute] int% workerThreads, [OutAttribute] int% completionPortThreads )
Parameters
- workerThreads
- Type: System::Int32%
When this method returns, contains the minimum number of worker threads that the thread pool creates on demand.
- completionPortThreads
- Type: System::Int32%
When this method returns, contains the minimum number of asynchronous I/O threads that the thread pool creates on demand.
The thread pool provides new worker threads or I/O completion threads on demand until it reaches the minimum for each category. When the minimum is reached, the thread pool can create additional threads in that category or wait until some tasks complete. Beginning with the .NET Framework 4, the thread pool creates and destroys threads in order to optimize throughput, which is defined as the number of tasks that complete per unit of time. Too few threads might not make optimal use of available resources, whereas too many threads could increase resource contention.
Note |
|---|
When demand is low, the actual number of thread pool threads can fall below the minimum values. |
The following example sets the minimum number of worker threads to four, and preserves the original value for the minimum number of asynchronous I/O completion threads.
using namespace System; using namespace System::Threading; int main() { int minWorker; int minIOC; // Get the current settings. ThreadPool::GetMinThreads( minWorker, minIOC ); // Change the minimum number of worker threads to four, but // keep the old setting for minimum asynchronous I/O // completion threads. if ( ThreadPool::SetMinThreads( 4, minIOC ) ) { // The minimum number of threads was set successfully. } else { // The minimum number of threads was not changed. } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note