IJobStorePauseJobs Method

Quartz.NET 3.0 API Documentation
Pause all of the IJobs in the given group - by pausing all of their ITriggers.

The JobStore should "remember" that the group is paused, and impose the pause on any new jobs that are added to the group while the group is paused.

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

C#
Task<IReadOnlyCollection<string>> PauseJobs(
	GroupMatcher<JobKey> matcher,
	CancellationToken cancellationToken = null
)

Parameters

matcher
Type: Quartz.Impl.MatchersGroupMatcherJobKey

[Missing <param name="matcher"/> documentation for "M:Quartz.Spi.IJobStore.PauseJobs(Quartz.Impl.Matchers.GroupMatcher{Quartz.JobKey},System.Threading.CancellationToken)"]

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

[Missing <param name="cancellationToken"/> documentation for "M:Quartz.Spi.IJobStore.PauseJobs(Quartz.Impl.Matchers.GroupMatcher{Quartz.JobKey},System.Threading.CancellationToken)"]

Return Value

Type: TaskIReadOnlyCollectionString

[Missing <returns> documentation for "M:Quartz.Spi.IJobStore.PauseJobs(Quartz.Impl.Matchers.GroupMatcher{Quartz.JobKey},System.Threading.CancellationToken)"]

See Also

Reference