JobStoreSupportGetTriggerKeys Method

Quartz.NET 3.0 API Documentation
Get the names of all of the ITrigger 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<TriggerKey>> GetTriggerKeys(
	GroupMatcher<TriggerKey> matcher,
	CancellationToken cancellationToken = null
)

Parameters

matcher
Type: Quartz.Impl.MatchersGroupMatcherTriggerKey

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

cancellationToken (Optional)
Type: System.ThreadingCancellationToken

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

Return Value

Type: TaskIReadOnlyCollectionTriggerKey

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

Implements

IJobStoreGetTriggerKeys(GroupMatcherTriggerKey, CancellationToken)
Remarks

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

Reference