StdAdoDelegateSelectTriggerForFireTime 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#
public virtual 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

Implements

IDriverDelegateSelectTriggerForFireTime(ConnectionAndTransactionHolder, DateTimeOffset, CancellationToken)
See Also

Reference