IThreadPoolRunInThread Method

Quartz.NET 3.0 API Documentation
Execute the given Task in the next available Thread.

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

C#
bool RunInThread(
	Func<Task> runnable
)

Parameters

runnable
Type: SystemFuncTask

[Missing <param name="runnable"/> documentation for "M:Quartz.Spi.IThreadPool.RunInThread(System.Func{System.Threading.Tasks.Task})"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:Quartz.Spi.IThreadPool.RunInThread(System.Func{System.Threading.Tasks.Task})"]

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

Reference