StdAdoDelegateSelectMisfiredTriggersInGroupInState Method

Quartz.NET 3.0 API Documentation
Get the names of all of the triggers in the given group and state that have misfired.

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

C#
public virtual Task<IReadOnlyCollection<TriggerKey>> SelectMisfiredTriggersInGroupInState(
	ConnectionAndTransactionHolder conn,
	string groupName,
	string state,
	DateTimeOffset ts,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
The DB Connection
groupName
Type: SystemString
Name of the group.
state
Type: SystemString
The state.
ts
Type: SystemDateTimeOffset
The timestamp.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskIReadOnlyCollectionTriggerKey
an array of TriggerKey objects

Implements

IDriverDelegateSelectMisfiredTriggersInGroupInState(ConnectionAndTransactionHolder, String, String, DateTimeOffset, CancellationToken)
See Also

Reference