ThreadPool::GetAvailableThreads Method (Int32%, Int32%)
.NET Framework (current version)
Retrieves the difference between the maximum number of thread pool threads returned by the GetMaxThreads method, and the number currently active.
Assembly: mscorlib (in mscorlib.dll)
public: static void GetAvailableThreads( [OutAttribute] int% workerThreads, [OutAttribute] int% completionPortThreads )
Parameters
- workerThreads
-
Type:
System::Int32%
The number of available worker threads.
- completionPortThreads
-
Type:
System::Int32%
The number of available asynchronous I/O threads.
When GetAvailableThreads returns, the variable specified by workerThreads contains the number of additional worker threads that can be started, and the variable specified by completionPortThreads contains the number of additional asynchronous I/O threads that can be started.
If there are no available threads, additional thread pool requests remain queued until thread pool threads become available.
.NET Framework
Available since 1.1
Available since 1.1
Show: