JobStoreSupportResumeJob Method

Quartz.NET 3.0 API Documentation
Resume (un-pause) the IJob with the given name.

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

C#
public virtual Task ResumeJob(
	JobKey jobKey,
	CancellationToken cancellationToken = null
)

Parameters

jobKey
Type: QuartzJobKey

[Missing <param name="jobKey"/> documentation for "M:Quartz.Impl.AdoJobStore.JobStoreSupport.ResumeJob(Quartz.JobKey,System.Threading.CancellationToken)"]

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

[Missing <param name="cancellationToken"/> documentation for "M:Quartz.Impl.AdoJobStore.JobStoreSupport.ResumeJob(Quartz.JobKey,System.Threading.CancellationToken)"]

Return Value

Type: Task

[Missing <returns> documentation for "M:Quartz.Impl.AdoJobStore.JobStoreSupport.ResumeJob(Quartz.JobKey,System.Threading.CancellationToken)"]

Implements

IJobStoreResumeJob(JobKey, CancellationToken)
Remarks

If any of the IJob's ITrigger s missed one or more fire-times, then the ITrigger's misfire instruction will be applied.
See Also

Reference