StdAdoDelegateHasMisfiredTriggersInState Method (ConnectionAndTransactionHolder, String, DateTimeOffset, Int32, ICollectionTriggerKey, CancellationToken)

Quartz.NET 3.0 API Documentation
Get the names of all of the triggers in the given state that have misfired - according to the given timestamp. No more than count will be returned.

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

C#
public virtual Task<bool> HasMisfiredTriggersInState(
	ConnectionAndTransactionHolder conn,
	string state1,
	DateTimeOffset ts,
	int count,
	ICollection<TriggerKey> resultList,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
The conn.
state1
Type: SystemString
The state1.
ts
Type: SystemDateTimeOffset
The ts.
count
Type: SystemInt32
The most misfired triggers to return, negative for all
resultList
Type: System.Collections.GenericICollectionTriggerKey
Output parameter. A List of TriggerKey objects. Must not be null
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskBoolean
Whether there are more misfired triggers left to find beyond the given count.

Implements

IDriverDelegateHasMisfiredTriggersInState(ConnectionAndTransactionHolder, String, DateTimeOffset, Int32, ICollectionTriggerKey, CancellationToken)
See Also

Reference