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

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.

Inheritance Hierarchy

System Object
  Quartz.Simpl SimpleThreadPool

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

public class SimpleThreadPool : IThreadPool
See Also