StdAdoDelegateUpdateTriggerGroupStateFromOtherStates Method

Quartz.NET 3.0 API Documentation
Update all triggers in the given group to the given new state, if they are in one of the given old states.

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

C#
public virtual Task<int> UpdateTriggerGroupStateFromOtherStates(
	ConnectionAndTransactionHolder conn,
	GroupMatcher<TriggerKey> matcher,
	string newState,
	string oldState1,
	string oldState2,
	string oldState3,
	CancellationToken cancellationToken = null
)

Parameters

conn
Type: Quartz.Impl.AdoJobStoreConnectionAndTransactionHolder
The DB connection.
matcher
Type: Quartz.Impl.MatchersGroupMatcherTriggerKey
newState
Type: SystemString
The new state for the trigger.
oldState1
Type: SystemString
One of the old state the trigger must be in.
oldState2
Type: SystemString
One of the old state the trigger must be in.
oldState3
Type: SystemString
One of the old state the trigger must be in.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation instruction.

Return Value

Type: TaskInt32
The number of rows updated.

Implements

IDriverDelegateUpdateTriggerGroupStateFromOtherStates(ConnectionAndTransactionHolder, GroupMatcherTriggerKey, String, String, String, String, CancellationToken)
See Also

Reference