JobStoreSupportGetJobKeys Method

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

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

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

Parameters

matcher
Type: Quartz.Impl.MatchersGroupMatcherJobKey

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

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

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

Return Value

Type: TaskIReadOnlyCollectionJobKey

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

Implements

IJobStoreGetJobKeys(GroupMatcherJobKey, CancellationToken)
Remarks

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

Reference