StdAdoDelegateUpdateFiredTrigger Method

Quartz.NET 3.0 API Documentation

Update a fired trigger.

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

C#
public virtual Task<int> UpdateFiredTrigger(
	ConnectionAndTransactionHolder conn,
	IOperableTrigger trigger,
	string state,
	IJobDetail job,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
the DB Connection
trigger
Type: Quartz.SpiIOperableTrigger
the trigger
state
Type: SystemString
the state that the trigger should be stored in
job
Type: QuartzIJobDetail
the job
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskInt32
the number of rows inserted

Implements

IDriverDelegateUpdateFiredTrigger(ConnectionAndTransactionHolder, IOperableTrigger, String, IJobDetail, CancellationToken)
Remarks

See Also

Reference