IThreadPool RunInThread Method Quartz.NET API Documentation
Execute the given IThreadRunnable in the next available Thread.

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

bool RunInThread(
	IThreadRunnable runnable
)

Parameters

runnable
Type: Quartz IThreadRunnable

[Missing <param name="runnable"/> documentation for "M:Quartz.Spi.IThreadPool.RunInThread(Quartz.IThreadRunnable)"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:Quartz.Spi.IThreadPool.RunInThread(Quartz.IThreadRunnable)"]

Remarks

The implementation of this interface should not throw exceptions unless there is a serious problem (i.e. a serious misconfiguration). If there are no available threads, rather it should either queue the Runnable, or block until a thread is available, depending on the desired strategy.
See Also