IDriverDelegateSelectTriggerForFireTime Method

Quartz.NET 3.0 API Documentation
Select the trigger that will be fired at the given fire time.

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

C#
Task<TriggerKey> SelectTriggerForFireTime(
	ConnectionAndTransactionHolder conn,
	DateTimeOffset fireTime,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
The DB Connection
fireTime
Type: SystemDateTimeOffset
The time that the trigger will be fired.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskTriggerKey
A TriggerKey representing the trigger that will be fired at the given fire time, or null if no trigger will be fired at that time
See Also

Reference