ISchedulerStart Method

Quartz.NET 3.0 API Documentation
Starts the IScheduler's threads that fire ITriggers. When a scheduler is first created it is in "stand-by" mode, and will not fire triggers. The scheduler can also be put into stand-by mode by calling the Standby(CancellationToken) method.

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

C#
Task Start(
	CancellationToken cancellationToken = null
)

Parameters

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

[Missing <param name="cancellationToken"/> documentation for "M:Quartz.IScheduler.Start(System.Threading.CancellationToken)"]

Return Value

Type: Task

[Missing <returns> documentation for "M:Quartz.IScheduler.Start(System.Threading.CancellationToken)"]

Remarks

The misfire/recovery process will be started, if it is the initial call to this method on this scheduler instance.
See Also

Reference