IThreadPool BlockForAvailableThreads Method Quartz.NET API Documentation
Determines the number of threads that are currently available in in the pool. Useful for determining the number of times RunInThread(IThreadRunnable) can be called before returning false.

Namespace: Quartz.Spi
Assembly: Quartz (in Quartz.dll) Version: 2.2.1.400
Syntax

int BlockForAvailableThreads()

Return Value

Type: Int32
the number of currently available threads
Remarks

The implementation of this method should block until there is at least one available thread.
See Also