StdAdoDelegateSelectFiredTriggerRecords Method

Quartz.NET 3.0 API Documentation
Select the states of all fired-trigger records for a given trigger, or trigger group if trigger name is .

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

C#
public virtual Task<IReadOnlyCollection<FiredTriggerRecord>> SelectFiredTriggerRecords(
	ConnectionAndTransactionHolder conn,
	string triggerName,
	string groupName,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
The DB connection.
triggerName
Type: SystemString
Name of the trigger.
groupName
Type: SystemString
Name of the group.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskIReadOnlyCollectionFiredTriggerRecord
a List of FiredTriggerRecord objects.

Implements

IDriverDelegateSelectFiredTriggerRecords(ConnectionAndTransactionHolder, String, String, CancellationToken)
See Also

Reference