SimpleThreadPool ClassQuartz.NET API Documentation
This is class is a simple implementation of a thread pool, based on the IThreadPool interface.
Inheritance Hierarchy

System Object
  Quartz.Simpl SimpleThreadPool

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

public class SimpleThreadPool : IThreadPool
Remarks

IThreadRunnable objects are sent to the pool with the RunInThread(IThreadRunnable) method, which blocks until a Thread becomes available. The pool has a fixed number of Threads, and does not grow or shrink based on demand.
See Also