IJobStoreGetJobKeys Method

Quartz.NET 3.0 API Documentation
Get the names of all of the IJob s that have the given group name.

If there are no jobs in the given group name, the result should be a zero-length array (not ).

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

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

Parameters

matcher
Type: Quartz.Impl.MatchersGroupMatcherJobKey
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskIReadOnlyCollectionJobKey

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

See Also

Reference