Interface IDriverDelegate
- Namespace
- Quartz.Impl.AdoJobStore
- Assembly
- Quartz.dll
This is the base interface for all driver delegate classes.
public interface IDriverDelegate
Remarks
This interface is very similar to the IJobStore interface except each method has an additional ConnectionAndTransactionHolder parameter.
Unless a database driver has some extremely-DB-specific requirements, any IDriverDelegate implementation classes should extend the StdAdoDelegate class.
Properties
FiltersAcquisitionJobTypeExclusions
Whether SelectTriggersToAcquire(ConnectionAndTransactionHolder, TriggerAcquisitionCriteria, CancellationToken) already keeps ExcludedJobTypeNames out of the rows it returns.
bool FiltersAcquisitionJobTypeExclusions { get; }
Property Value
Remarks
Every other property of TriggerAcquisitionCriteria may be ignored by a delegate with no worse consequence than a wider result than asked for. This one is different: ignoring it means the node runs job types the deployment excluded. So the ADO store keeps a backstop — it drops an excluded candidate ordinally on JobTypeName before reading the trigger back — and this property is how a delegate says the backstop has nothing left to do.
It defaults to false, because a delegate written before the exclusions
existed cannot have honoured them. StdAdoDelegate answers
true: its acquisition statement carries the NOT IN clause, and every
dialect Quartz ships builds its statement from that one. A delegate of somebody's own that
replaces the acquisition statement without the clause — or overrides
StdAdoDelegate.GetSelectNextTriggerToAcquireSql to drop it — must answer
false, or the exclusions stop being enforced anywhere.
Methods
ApplyTriggerFired(ConnectionAndTransactionHolder, TriggerFiredUpdate, CancellationToken)
Apply every row change one trigger fire makes.
ValueTask ApplyTriggerFired(ConnectionAndTransactionHolder conn, TriggerFiredUpdate update, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
updateTriggerFiredUpdateThe changes the fire makes.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The fire path has read everything it decides on before it writes anything, so what is left is a run of writes with no read between them: the fired-trigger row, the misfire original fire time where one was recorded, the sibling triggers of a job that disallows concurrent execution, the trigger's own row, and its schedule in whichever type table holds it. They go out as one DbBatch where the provider supports batching, and one command at a time where it does not.
All of it is one transaction either way, and a batch executes its commands in sequence, so the order the writes were issued in is the order they still happen in.
CalendarExists(ConnectionAndTransactionHolder, string, CancellationToken)
Check whether or not a calendar exists.
ValueTask<bool> CalendarExists(ConnectionAndTransactionHolder conn, string calendarName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
calendarNamestringThe name of the calendar.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
CalendarIsReferenced(ConnectionAndTransactionHolder, string, CancellationToken)
Check whether or not a calendar is referenced by any triggers.
ValueTask<bool> CalendarIsReferenced(ConnectionAndTransactionHolder conn, string calendarName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
calendarNamestringThe name of the calendar.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
ClearData(ConnectionAndTransactionHolder, CancellationToken)
ValueTask ClearData(ConnectionAndTransactionHolder conn, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe connection and transaction this delete runs in.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
ClearMisfireOriginalFireTime(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Clears the misfire original fire time for the given trigger.
ValueTask ClearMisfireOriginalFireTime(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHoldertriggerKeyTriggerKeycancellationTokenCancellationToken
Returns
Remarks
The fire path clears it as one command of ApplyTriggerFired(ConnectionAndTransactionHolder, TriggerFiredUpdate, CancellationToken)'s batch rather than through this, so overriding this alone no longer changes what a fire clears.
ClearTriggerRetryAttempt(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Puts a trigger's retry attempt back to zero, leaving everything else about the row alone.
ValueTask<int> ClearTriggerRetryAttempt(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
triggerKeyTriggerKeyThe trigger to clear.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The other end of UpdateTriggerForRetry(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, CancellationToken): the occurrence is done with, whether it succeeded or spent its attempts. Issued only when the attempt was actually non-zero, so an ordinary completion still costs no extra statement.
CountMisfiredTriggersInState(ConnectionAndTransactionHolder, StoredTriggerState, DateTimeOffset, CancellationToken)
Counts the triggers in the given state that missed their scheduled fire time.
ValueTask<int> CountMisfiredTriggersInState(ConnectionAndTransactionHolder conn, StoredTriggerState state, DateTimeOffset misfireTime, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
stateStoredTriggerStateThe trigger state to scan.
misfireTimeDateTimeOffsetTriggers whose next fire time is at or before this are misfired.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
CountTriggersForJob(ConnectionAndTransactionHolder, JobKey, CancellationToken)
Select the number of triggers associated with a given job.
ValueTask<int> CountTriggersForJob(ConnectionAndTransactionHolder conn, JobKey jobKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
CreateSchema(ConnectionAndTransactionHolder, CancellationToken)
Creates whatever this delegate's schema is missing, and leaves everything that is already there exactly as it is.
ValueTask CreateSchema(ConnectionAndTransactionHolder conn, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Called at startup, before ValidateSchema(ConnectionAndTransactionHolder, CancellationToken), when CreateIfMissing is configured. Every statement it runs is guarded, so this is a no-op against a schema that already exists; nothing is altered and nothing is dropped, which is what makes it safe to leave on and what keeps a mis-typed table prefix from costing data.
It is not a migration. A schema that has every table but is missing a column a later release
added is left exactly as it is; upgrading a schema is what database/migrations/ is for.
For that reason the store will not call this at all against a schema 4.x did not create —
creating the tables a 3.x schema is missing would leave one that starts and fires nothing — so
a delegate's script only ever meets a database whose Quartz tables, if it has any, this
version made.
A delegate that has no script for its database throws rather than pretending to have created anything, naming itself and the script to run by hand.
Exceptions
- JobPersistenceException
A statement failed, or this delegate has no schema script.
DeleteBlobTrigger(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Delete the BLOB trigger data for a trigger.
ValueTask<int> DeleteBlobTrigger(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeleteCalendar(ConnectionAndTransactionHolder, string, CancellationToken)
Delete a calendar.
ValueTask<int> DeleteCalendar(ConnectionAndTransactionHolder conn, string calendarName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
calendarNamestringThe name of the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeleteFiredTrigger(ConnectionAndTransactionHolder, string, CancellationToken)
Delete a fired trigger.
ValueTask<int> DeleteFiredTrigger(ConnectionAndTransactionHolder conn, string entryId, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
entryIdstringThe fired trigger entry to delete.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeleteFiredTriggers(ConnectionAndTransactionHolder, FiredTriggerQuery, CancellationToken)
Deletes the fired triggers the query selects. A query with no filter set deletes all of them.
ValueTask<int> DeleteFiredTriggers(ConnectionAndTransactionHolder conn, FiredTriggerQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
queryFiredTriggerQueryWhich fired triggers to delete.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeleteFiredTriggers(ConnectionAndTransactionHolder, IReadOnlyCollection<string>, CancellationToken)
Delete several fired triggers by entry id, in as few round trips as the provider allows.
ValueTask DeleteFiredTriggers(ConnectionAndTransactionHolder conn, IReadOnlyCollection<string> entryIds, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
entryIdsIReadOnlyCollection<string>The fired trigger entries to delete. An empty collection does nothing.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The same statement as the single-entry overload, once per id, issued as one DbBatch where the provider supports batching. This is the shape cluster recovery needs when it is clearing a dead node's rows but holding some of them back: the whole-instance DeleteFiredTriggers(ConnectionAndTransactionHolder, FiredTriggerQuery, CancellationToken) would take the preserved rows with it. No row count comes back, for the reason UpdateTriggerStatesForJobsFromOtherState(ConnectionAndTransactionHolder, IReadOnlyCollection<JobKey>, StoredTriggerState, StoredTriggerState, CancellationToken) gives.
DeleteJobDetail(ConnectionAndTransactionHolder, JobKey, CancellationToken)
Delete the job detail record for the given job.
ValueTask<int> DeleteJobDetail(ConnectionAndTransactionHolder conn, JobKey jobKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeletePausedJobGroup(ConnectionAndTransactionHolder, GroupMatcher<JobKey>, CancellationToken)
Deletes the paused job groups the matcher selects. A single group is GroupEquals(string).
ValueTask<int> DeletePausedJobGroup(ConnectionAndTransactionHolder conn, GroupMatcher<JobKey> matcher, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe database connection.
matcherGroupMatcher<JobKey>Criteria for matching groups.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeletePausedTriggerGroup(ConnectionAndTransactionHolder, GroupMatcher<TriggerKey>, CancellationToken)
Deletes the paused trigger groups the matcher selects. A single group is GroupEquals(string).
ValueTask<int> DeletePausedTriggerGroup(ConnectionAndTransactionHolder conn, GroupMatcher<TriggerKey> matcher, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe database connection.
matcherGroupMatcher<TriggerKey>Criteria for matching groups.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeleteSchedulerState(ConnectionAndTransactionHolder, string, CancellationToken)
Delete a scheduler-instance state record.
ValueTask<int> DeleteSchedulerState(ConnectionAndTransactionHolder conn, string instanceId, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
instanceIdstringThe instance id.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
DeleteTrigger(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Delete the base trigger data for a trigger.
ValueTask<int> DeleteTrigger(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Initialize(DriverDelegateContext)
Initializes the driver delegate with the settings it works from.
void Initialize(DriverDelegateContext context)
Parameters
contextDriverDelegateContextThe settings the store was configured with.
Remarks
Called once by the job store before the delegate is used. There is no default implementation: a delegate that does not read the context has no table prefix, provider or serializer, and would fail at its first statement rather than at startup.
InsertBlobTrigger(ConnectionAndTransactionHolder, IOperableTrigger, CancellationToken)
Insert the blob trigger data.
ValueTask<int> InsertBlobTrigger(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerIOperableTriggerThe trigger to insert
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
InsertCalendar(ConnectionAndTransactionHolder, string, ICalendar, CancellationToken)
Insert a new calendar.
ValueTask<int> InsertCalendar(ConnectionAndTransactionHolder conn, string calendarName, ICalendar calendar, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
calendarNamestringThe name for the new calendar.
calendarICalendarThe calendar.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
InsertFiredTrigger(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, IJobDetail?, CancellationToken)
Insert a fired trigger.
ValueTask<int> InsertFiredTrigger(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, StoredTriggerState state, IJobDetail? jobDetail, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerIOperableTriggerThe trigger.
stateStoredTriggerStateThe state that the trigger should be stored in.
jobDetailIJobDetailThe job detail.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
InsertFiredTriggers(ConnectionAndTransactionHolder, IReadOnlyList<IOperableTrigger>, StoredTriggerState, IJobDetail?, CancellationToken)
Inserts the fired-trigger rows of one acquisition round in as few round trips as the provider allows.
ValueTask InsertFiredTriggers(ConnectionAndTransactionHolder conn, IReadOnlyList<IOperableTrigger> triggers, StoredTriggerState state, IJobDetail? jobDetail, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggersIReadOnlyList<IOperableTrigger>The triggers to record, in the order they were acquired.
stateStoredTriggerStateThe state that the triggers should be stored in.
jobDetailIJobDetailThe job detail, or null when no job is named yet.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The rows are all in the same state and belong to the same job detail, which is what an acquisition round produces: every row goes in as Acquired with no job named yet. The default implementation is the loop the store used to make itself, so a delegate that says nothing about batching keeps behaving exactly as it did.
InsertJobDetail(ConnectionAndTransactionHolder, IJobDetail, CancellationToken)
Insert the job detail record.
ValueTask<int> InsertJobDetail(ConnectionAndTransactionHolder conn, IJobDetail job, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobIJobDetailThe job to insert.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
InsertPausedJobGroup(ConnectionAndTransactionHolder, string, CancellationToken)
Records that a job group is paused.
ValueTask<int> InsertPausedJobGroup(ConnectionAndTransactionHolder conn, string groupName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe database connection.
groupNamestringName of the group.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The row is what makes the pause outlive the process and reach the other nodes of a cluster, and what a caller adding a job to the group later reads. The table's primary key rejects a duplicate, so callers check first — under the trigger-access lock, which is what keeps two nodes pausing the same group from racing.
InsertPausedJobGroups(ConnectionAndTransactionHolder, IReadOnlyCollection<string>, CancellationToken)
Writes a paused row for each of the given job groups, in as few round trips as the provider allows.
ValueTask InsertPausedJobGroups(ConnectionAndTransactionHolder conn, IReadOnlyCollection<string> groupNames, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe database connection.
groupNamesIReadOnlyCollection<string>The groups to pause. May be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Every group is expected to have no row yet — the caller established that with SelectPausedJobGroups(ConnectionAndTransactionHolder, IReadOnlyCollection<string>, CancellationToken) under the same lock — so this is a plain insert per group rather than an upsert. The default implementation issues them one at a time.
InsertPausedTriggerGroup(ConnectionAndTransactionHolder, string, CancellationToken)
Inserts the paused trigger group.
ValueTask<int> InsertPausedTriggerGroup(ConnectionAndTransactionHolder conn, string groupName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe conn.
groupNamestringName of the group.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
InsertSchedulerState(ConnectionAndTransactionHolder, string, DateTimeOffset, TimeSpan, CancellationToken)
Insert a scheduler-instance state record.
ValueTask<int> InsertSchedulerState(ConnectionAndTransactionHolder conn, string instanceId, DateTimeOffset checkInTime, TimeSpan interval, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
instanceIdstringThe instance id.
checkInTimeDateTimeOffsetThe check in time.
intervalTimeSpanThe interval.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
InsertTrigger(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, IJobDetail, CancellationToken)
Insert the base trigger data.
ValueTask<int> InsertTrigger(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, StoredTriggerState state, IJobDetail jobDetail, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerIOperableTriggerThe trigger to insert.
stateStoredTriggerStateThe state that the trigger should be stored in.
jobDetailIJobDetailThe job detail.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
IsJobCurrentlyExecuting(ConnectionAndTransactionHolder, JobKey, CancellationToken)
Checks whether a job is currently being executed (has a fired trigger in EXECUTING state). Used to enforce DisallowConcurrentExecutionAttribute across cluster nodes.
ValueTask<bool> IsJobCurrentlyExecuting(ConnectionAndTransactionHolder conn, JobKey jobKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
IsJobGroupPaused(ConnectionAndTransactionHolder, string, CancellationToken)
Determines whether the specified job group is paused.
ValueTask<bool> IsJobGroupPaused(ConnectionAndTransactionHolder conn, string groupName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe database connection.
groupNamestringName of the group.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
IsTriggerGroupPaused(ConnectionAndTransactionHolder, string, CancellationToken)
Determines whether the specified trigger group is paused.
ValueTask<bool> IsTriggerGroupPaused(ConnectionAndTransactionHolder conn, string groupName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe conn.
groupNamestringName of the group.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
JobExists(ConnectionAndTransactionHolder, JobKey, CancellationToken)
Check whether or not the given job exists.
ValueTask<bool> JobExists(ConnectionAndTransactionHolder conn, JobKey jobKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
RepinTriggersFromDeadNode(ConnectionAndTransactionHolder, string, string, CancellationToken)
Releases all auto-claimed pins belonging to a dead node back to the given value (batch UPDATE). Explicit pins are left untouched. Used during ClusterRecover to implement sticky failover.
ValueTask<int> RepinTriggersFromDeadNode(ConnectionAndTransactionHolder conn, string oldPreferredNode, string newPreferredNode, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderoldPreferredNodestringnewPreferredNodestringcancellationTokenCancellationToken
Returns
SelectCalendar(ConnectionAndTransactionHolder, string, CancellationToken)
Select a calendar.
ValueTask<ICalendar?> SelectCalendar(ConnectionAndTransactionHolder conn, string calendarName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
calendarNamestringThe name of the calendar.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectCalendarNames(ConnectionAndTransactionHolder, CalendarQuery, CancellationToken)
Selects one page of calendar names, ordered by name.
ValueTask<PagedResult<string>> SelectCalendarNames(ConnectionAndTransactionHolder conn, CalendarQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
queryCalendarQueryWhich names to select and which page of them to return.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectExecutionGroupsInFlight(ConnectionAndTransactionHolder, CancellationToken)
Counts what the cluster currently holds in flight for each (execution group, trigger group) pair, which is what a Cluster execution limit is counted against.
ValueTask<List<ExecutionGroupInFlight>> SelectExecutionGroupsInFlight(ConnectionAndTransactionHolder conn, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<ExecutionGroupInFlight>>
One entry per distinct pair with work in flight; empty when the cluster is idle.
Remarks
The answer is an aggregate over the fired-triggers table, whose rows already have exactly the lifetime a reservation needs: written when a trigger is acquired, updated when it fires, deleted when it completes or when cluster recovery cleans up after the node that owned it. So the count includes a peer's reservation that has not started yet, and a dead node's rows keep holding slots until recovery clears them — under-serving the quota rather than over-serving it, which is the safe direction.
Both group names are returned because the limits derive their key from the pair; see ExecutionGroupInFlight. Rows are bounded by the distinct pairs currently in flight, not by the size of the schedule.
SelectFireInstances(ConnectionAndTransactionHolder, FireInstanceQuery, CancellationToken)
Selects one page of fire instances, ordered by trigger group, then trigger name, then entry id.
ValueTask<PagedResult<FireInstance>> SelectFireInstances(ConnectionAndTransactionHolder conn, FireInstanceQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
queryFireInstanceQueryWhat to select and which page of it to return.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The listing reads the FIRED_TRIGGERS row only, and only the columns FireInstance projects — not the concurrency and recovery flags that SelectFiredTriggerRecords(ConnectionAndTransactionHolder, FiredTriggerQuery, CancellationToken) reads for the recovery passes. The entry id is part of the ordering because trigger group and name do not identify a row here: one trigger can have several firings at once.
SelectFiredTriggerInstanceNames(ConnectionAndTransactionHolder, CancellationToken)
Select the distinct instance names of all fired-trigger records.
ValueTask<List<string>> SelectFiredTriggerInstanceNames(ConnectionAndTransactionHolder conn, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe conn.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
This is useful when trying to identify orphaned fired triggers (a fired trigger without a scheduler state record.)
SelectFiredTriggerRecords(ConnectionAndTransactionHolder, FiredTriggerQuery, CancellationToken)
Selects the states of the fired-trigger records the query selects. A query with no filter set selects all of them.
ValueTask<List<FiredTriggerRecord>> SelectFiredTriggerRecords(ConnectionAndTransactionHolder conn, FiredTriggerQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
queryFiredTriggerQueryWhich fired triggers to select.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<FiredTriggerRecord>>
A list of FiredTriggerRecord objects.
Remarks
Not a listing — SelectFireInstances(ConnectionAndTransactionHolder, FireInstanceQuery, CancellationToken) is. This one is the whole set, every column, for the maintenance passes that have to see all of it.
SelectJobDetail(ConnectionAndTransactionHolder, JobKey, ITypeLoader, CancellationToken)
Select the JobDetail object for a given job name / group name.
ValueTask<IJobDetail?> SelectJobDetail(ConnectionAndTransactionHolder conn, JobKey jobKey, ITypeLoader typeLoader, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
typeLoaderITypeLoaderThe type loader.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<IJobDetail>
The populated JobDetail object
SelectJobDetails(ConnectionAndTransactionHolder, IReadOnlyCollection<JobKey>, ITypeLoader, CancellationToken)
Selects several jobs at once, chunking the keys into as few statements as the provider's parameter ceiling allows. Keys that have no row are simply absent from the result.
ValueTask<List<IJobDetail>> SelectJobDetails(ConnectionAndTransactionHolder conn, IReadOnlyCollection<JobKey> jobKeys, ITypeLoader typeLoader, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
jobKeysIReadOnlyCollection<JobKey>The keys of the jobs to select.
typeLoaderITypeLoaderThe type loader.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectJobForTrigger(ConnectionAndTransactionHolder, TriggerKey, ITypeLoader, bool, CancellationToken)
Select the job to which the trigger is associated.
ValueTask<IJobDetail?> SelectJobForTrigger(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, ITypeLoader typeLoader, bool loadJobType, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerKeyTriggerKeyThe key identifying the trigger.
typeLoaderITypeLoaderThe type loader.
loadJobTypeboolWhether to resolve the job's type now, which throws when the class is not in this process.
falsegets a job detail whose JobType is the recorded name, resolved lazily by whoever comes to run it. It says nothing about the job's two attribute flags: ConcurrentExecutionDisallowed and PersistJobDataAfterExecution come fromIS_NONCONCURRENTandIS_UPDATE_DATAeither way, so a caller deciding whether a trigger is blocked does not need the class to decide it correctly.cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectJobGroups(ConnectionAndTransactionHolder, JobGroupQuery, CancellationToken)
Selects one page of job groups, ordered by name.
ValueTask<PagedResult<JobGroup>> SelectJobGroups(ConnectionAndTransactionHolder conn, JobGroupQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
queryJobGroupQueryWhat to select and which page of it to return.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
A query for paused groups only reads PAUSED_JOB_GRPS, so it reports a paused group that currently holds no jobs as well. That table has no counterpart to AllGroupsPaused: pause-all is a trigger operation and writes no marker row here.
SelectJobHeaders(ConnectionAndTransactionHolder, JobQuery, CancellationToken)
Selects one page of job listing entries, ordered by group and then name.
ValueTask<PagedResult<JobHeader>> SelectJobHeaders(ConnectionAndTransactionHolder conn, JobQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
queryJobQueryWhat to select and which page of it to return.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The listing does not read or deserialize JOB_DATA, and does not load the job type — the header carries the recorded type name as a string.
SelectJobKeysInGroup(ConnectionAndTransactionHolder, GroupMatcher<JobKey>, CancellationToken)
Select the keys of all the jobs a group matcher selects.
ValueTask<List<JobKey>> SelectJobKeysInGroup(ConnectionAndTransactionHolder conn, GroupMatcher<JobKey> matcher, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
matcherGroupMatcher<JobKey>Criteria for matching groups.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Not a listing — SelectJobHeaders(ConnectionAndTransactionHolder, JobQuery, CancellationToken) is. This one serves the mutation paths, which need every matching key in one go so that they can update them under the same lock, and which therefore must not be paged.
SelectMisfiredTriggersToRecover(ConnectionAndTransactionHolder, StoredTriggerState, DateTimeOffset, int, CancellationToken)
Selects the misfired triggers to recover as fully populated triggers, rather than as keys that the caller then has to read back one at a time. Same predicate and ordering as CountMisfiredTriggersInState(ConnectionAndTransactionHolder, StoredTriggerState, DateTimeOffset, CancellationToken).
ValueTask<MisfiredTriggerBatch> SelectMisfiredTriggersToRecover(ConnectionAndTransactionHolder conn, StoredTriggerState state, DateTimeOffset misfireTime, int count, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
stateStoredTriggerStateThe trigger state to scan (Waiting).
misfireTimeDateTimeOffsetTriggers whose next fire time is at or before this are misfired.
countintMaximum number of triggers to return, or -1 for all of them.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectPausedJobGroups(ConnectionAndTransactionHolder, IReadOnlyCollection<string>, CancellationToken)
Of the given job groups, which already have a paused row.
ValueTask<List<string>> SelectPausedJobGroups(ConnectionAndTransactionHolder conn, IReadOnlyCollection<string> groupNames, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe database connection.
groupNamesIReadOnlyCollection<string>The groups to ask about. May be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The set form of IsJobGroupPaused(ConnectionAndTransactionHolder, string, CancellationToken), which is what pausing a matcher's worth of job groups actually asks: it needs the groups that do not have a row, so that it can write exactly those. The default implementation asks one group at a time, as that path used to.
SelectSchedulerStateRecords(ConnectionAndTransactionHolder, string?, CancellationToken)
A List of all current SchedulerStateRecords.
If instanceId is not null, then only the record for the identified instance will be returned.
ValueTask<List<SchedulerStateRecord>> SelectSchedulerStateRecords(ConnectionAndTransactionHolder conn, string? instanceId, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
instanceIdstringThe instance id, or null for every instance.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectStoredTriggerHeaders(ConnectionAndTransactionHolder, IReadOnlyCollection<TriggerKey>, CancellationToken)
Selects the stored headers of a whole set of triggers, chunking the keys into as few statements as the provider's parameter ceiling allows. Keys that have no row are simply absent from the result.
ValueTask<List<StoredTriggerHeader>> SelectStoredTriggerHeaders(ConnectionAndTransactionHolder conn, IReadOnlyCollection<TriggerKey> triggerKeys, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
triggerKeysIReadOnlyCollection<TriggerKey>The keys identifying the triggers. May be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The plural of SelectTriggerHeader(ConnectionAndTransactionHolder, TriggerKey, CancellationToken) — the storage-side header a state transition decides on, not the listing entry SelectTriggerHeaders(ConnectionAndTransactionHolder, TriggerQuery, CancellationToken) pages over. Pause and resume read one of these per key and then decide the whole set's transitions at once; the default implementation is the per-key loop they used to make.
SelectTrigger(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Select a trigger.
ValueTask<IOperableTrigger?> SelectTrigger(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<IOperableTrigger>
The ITrigger object.
SelectTriggerGroupNames(ConnectionAndTransactionHolder, GroupMatcher<TriggerKey>, CancellationToken)
Select all trigger group names a group matcher selects. Pass AnyGroup() for every group.
ValueTask<List<string>> SelectTriggerGroupNames(ConnectionAndTransactionHolder conn, GroupMatcher<TriggerKey> matcher, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
matcherGroupMatcher<TriggerKey>The matcher to apply for searching.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Not a listing — SelectTriggerGroups(ConnectionAndTransactionHolder, TriggerGroupQuery, CancellationToken) with a TriggerGroupQuery is. This one serves the pause/resume mutation paths, which need every matching group in one go so that they can update them under the same lock, and which therefore must not be paged.
SelectTriggerGroups(ConnectionAndTransactionHolder, TriggerGroupQuery, CancellationToken)
Selects one page of trigger groups, ordered by name.
ValueTask<PagedResult<TriggerGroup>> SelectTriggerGroups(ConnectionAndTransactionHolder conn, TriggerGroupQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
queryTriggerGroupQueryWhat to select and which page of it to return.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
A query for paused groups only reads PAUSED_TRIGGER_GRPS, so it reports a paused group that currently has no triggers as well. It must not report AllGroupsPaused: that row records "everything is paused" and is not a group any trigger can belong to.
SelectTriggerHeader(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Select the stored state, next fire time and job of one trigger, in a single statement.
ValueTask<StoredTriggerHeader?> SelectTriggerHeader(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<StoredTriggerHeader>
The trigger's header, or null when no such trigger exists.
SelectTriggerHeaders(ConnectionAndTransactionHolder, TriggerQuery, CancellationToken)
Selects one page of trigger listing entries, ordered by group and then name.
ValueTask<PagedResult<TriggerHeader>> SelectTriggerHeaders(ConnectionAndTransactionHolder conn, TriggerQuery query, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
queryTriggerQueryWhat to select and which page of it to return.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The listing reads the TRIGGERS row only: no type table, no BLOB, no JOB_DATA.
SelectTriggerJobDataMap(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Select a trigger's JobDataMap.
ValueTask<JobDataMap> SelectTriggerJobDataMap(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<JobDataMap>
The JobDataMap of the Trigger, never null, but possibly empty.
SelectTriggerKeysForJob(ConnectionAndTransactionHolder, JobKey, StoredTriggerState, CancellationToken)
Get the keys of the triggers of the given job that are in the given state.
ValueTask<List<TriggerKey>> SelectTriggerKeysForJob(ConnectionAndTransactionHolder conn, JobKey jobKey, StoredTriggerState state, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
stateStoredTriggerStateThe state the triggers must be in.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The filtered form of the overload above, for the callers that want the state rather than the trigger — completion bookkeeping asking which of a job's triggers it has just unblocked, where loading each trigger and then asking the database for its state one at a time is a read per trigger for an answer one read can give.
SelectTriggerKeysForJob(ConnectionAndTransactionHolder, JobKey, CancellationToken)
Get the keys of all the triggers associated with the given job.
ValueTask<List<TriggerKey>> SelectTriggerKeysForJob(ConnectionAndTransactionHolder conn, JobKey jobKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Not a listing — SelectTriggerHeaders(ConnectionAndTransactionHolder, TriggerQuery, CancellationToken) with a job filter is. This one serves the pause/resume and removal mutation paths, which need every key of the job in one go so that they can update them under the same lock, and which therefore must not be paged.
SelectTriggerKeysForJobs(ConnectionAndTransactionHolder, IReadOnlyCollection<JobKey>, CancellationToken)
Get the keys of every trigger belonging to any of the given jobs.
ValueTask<List<TriggerKey>> SelectTriggerKeysForJobs(ConnectionAndTransactionHolder conn, IReadOnlyCollection<JobKey> jobKeys, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeysIReadOnlyCollection<JobKey>The keys identifying the jobs. May be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The job-set form of the first overload above, for pausing and resuming a whole matcher's worth of jobs: what those paths want is one flat set of trigger keys, and reading it a job at a time is a statement per job for an answer one statement can give. The default implementation is that per-job loop.
SelectTriggerKeysInGroup(ConnectionAndTransactionHolder, GroupMatcher<TriggerKey>, CancellationToken)
Select the keys of all the triggers a group matcher selects.
ValueTask<List<TriggerKey>> SelectTriggerKeysInGroup(ConnectionAndTransactionHolder conn, GroupMatcher<TriggerKey> matcher, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
matcherGroupMatcher<TriggerKey>Criteria for matching groups.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<TriggerKey>>
The keys of the matching triggers.
Remarks
Not a listing — SelectTriggerHeaders(ConnectionAndTransactionHolder, TriggerQuery, CancellationToken) is. This one serves the pause/resume mutation paths, which need every matching key in one go so that they can update them under the same lock, and which therefore must not be paged.
SelectTriggerKeysInState(ConnectionAndTransactionHolder, IReadOnlyCollection<TriggerKey>, StoredTriggerState, CancellationToken)
Select which of the given triggers are in the given state.
ValueTask<List<TriggerKey>> SelectTriggerKeysInState(ConnectionAndTransactionHolder conn, IReadOnlyCollection<TriggerKey> triggerKeys, StoredTriggerState state, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
triggerKeysIReadOnlyCollection<TriggerKey>The keys to ask about.
stateStoredTriggerStateThe state the triggers must be in.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<TriggerKey>>
The keys of those triggers that are in the state.
Remarks
The set-taking form of SelectTriggerState(ConnectionAndTransactionHolder, TriggerKey, CancellationToken), for a caller that already holds the keys — cluster recovery asking which of a failed node's triggers ran to COMPLETE, where a state per key is a round trip per key for an answer one read gives. A key with no row, or with a row in another state, is simply absent from the result.
SelectTriggerState(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Select a trigger's state value.
ValueTask<StoredTriggerState> SelectTriggerState(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<StoredTriggerState>
The trigger's stored state, or Deleted when no such trigger exists.
SelectTriggerStateWithExecuting(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Selects a trigger's stored state together with whether it currently has an execution in flight.
ValueTask<TriggerExecutionState> SelectTriggerStateWithExecuting(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHoldertriggerKeyTriggerKeycancellationTokenCancellationToken
Returns
- ValueTask<TriggerExecutionState>
The trigger's state and execution, or NotFound when no such trigger exists.
SelectTriggers(ConnectionAndTransactionHolder, IReadOnlyCollection<TriggerKey>, CancellationToken)
Selects several triggers at once, chunking the keys into as few statements as the provider's parameter ceiling allows. Keys that have no row are simply absent from the result.
ValueTask<List<IOperableTrigger>> SelectTriggers(ConnectionAndTransactionHolder conn, IReadOnlyCollection<TriggerKey> triggerKeys, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
triggerKeysIReadOnlyCollection<TriggerKey>The keys of the triggers to select.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
SelectTriggersForCalendar(ConnectionAndTransactionHolder, string, CancellationToken)
Select the triggers for a calendar
ValueTask<List<IOperableTrigger>> SelectTriggersForCalendar(ConnectionAndTransactionHolder conn, string calendarName, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
calendarNamestringName of the calendar.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<IOperableTrigger>>
An array of ITrigger objects associated with a given job.
SelectTriggersForJob(ConnectionAndTransactionHolder, JobKey, CancellationToken)
Select the triggers for a job>
ValueTask<List<IOperableTrigger>> SelectTriggersForJob(ConnectionAndTransactionHolder conn, JobKey jobKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<IOperableTrigger>>
an array of ITrigger objects associated with a given job.
SelectTriggersForRecoveringJobs(ConnectionAndTransactionHolder, CancellationToken)
Select all of the triggers for jobs that are requesting recovery. The returned trigger objects will have unique "recoverXXX" trigger names and will be in the DefaultRecoveryGroup trigger group.
ValueTask<List<IOperableTrigger>> SelectTriggersForRecoveringJobs(ConnectionAndTransactionHolder conn, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<IOperableTrigger>>
An array of ITrigger objects
Remarks
In order to preserve the ordering of the triggers, the fire time will be set from the ColumnFiredTime column in the TableFiredTriggers table. The caller is responsible for calling ComputeFirstFireTimeUtc(ICalendar?) on each returned trigger. It is also up to the caller to insert the returned triggers to ensure that they are fired.
SelectTriggersInState(ConnectionAndTransactionHolder, StoredTriggerState, CancellationToken)
Select all the triggers in a given state.
ValueTask<List<TriggerKey>> SelectTriggersInState(ConnectionAndTransactionHolder conn, StoredTriggerState state, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
stateStoredTriggerStateThe state the triggers must be in.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<TriggerKey>>
An array of trigger TriggerKeys.
SelectTriggersToAcquire(ConnectionAndTransactionHolder, TriggerAcquisitionCriteria, CancellationToken)
Selects the next triggers to fire, in ascending order of fire time and then descending by priority.
ValueTask<List<TriggerAcquireResult>> SelectTriggersToAcquire(ConnectionAndTransactionHolder conn, TriggerAcquisitionCriteria criteria, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
criteriaTriggerAcquisitionCriteriaWhat to acquire, and how much of it.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<List<TriggerAcquireResult>>
A (never null, possibly empty) list of the next triggers to be fired.
TriggerExists(ConnectionAndTransactionHolder, TriggerKey, CancellationToken)
Check whether or not a trigger exists.
ValueTask<bool> TriggerExists(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderthe DB Connection
triggerKeyTriggerKeyThe key identifying the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateBlobTrigger(ConnectionAndTransactionHolder, IOperableTrigger, CancellationToken)
Update the blob trigger data.
ValueTask<int> UpdateBlobTrigger(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderthe DB Connection
triggerIOperableTriggerThe trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateCalendar(ConnectionAndTransactionHolder, string, ICalendar, CancellationToken)
Update a calendar.
ValueTask<int> UpdateCalendar(ConnectionAndTransactionHolder conn, string calendarName, ICalendar calendar, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
calendarNamestringThe name for the new calendar.
calendarICalendarThe calendar.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateJobData(ConnectionAndTransactionHolder, IJobDetail, CancellationToken)
Update the job data map for the given job.
ValueTask<int> UpdateJobData(ConnectionAndTransactionHolder conn, IJobDetail job, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobIJobDetailThe job.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateJobDetail(ConnectionAndTransactionHolder, IJobDetail, CancellationToken)
Update the job detail record.
ValueTask<int> UpdateJobDetail(ConnectionAndTransactionHolder conn, IJobDetail job, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection.
jobIJobDetailThe job to update.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateMisfireOriginalFireTime(ConnectionAndTransactionHolder, TriggerKey, DateTimeOffset?, CancellationToken)
Updates the misfire original fire time for the given trigger.
ValueTask UpdateMisfireOriginalFireTime(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, DateTimeOffset? fireTime, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHoldertriggerKeyTriggerKeyfireTimeDateTimeOffset?cancellationTokenCancellationToken
Returns
UpdateMisfiredTrigger(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, DateTimeOffset?, CancellationToken)
Performs a targeted UPDATE of only the columns that change during misfire recovery,
bypassing the heavyweight AddTrigger / UpdateTrigger path which
performs many unnecessary SELECTs (existence check, pause-group checks, job retrieval,
trigger-type lookup) that are redundant for a trigger known to be in WAITING state.
ValueTask UpdateMisfiredTrigger(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, StoredTriggerState newState, DateTimeOffset? misfireOriginalFireTime, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
triggerIOperableTriggerThe trigger after
UpdateAfterMisfirehas been applied in-memory.newStateStoredTriggerStateThe new trigger state to persist (e.g. WAITING, COMPLETE, BLOCKED).
misfireOriginalFireTimeDateTimeOffset?The original scheduled fire time for "fire now" misfire policies. When non-
null, the value is written to the MISFIRE_ORIG_FIRE_TIME column.nullleaves the column unchanged, preserving any previously stored original fire time.cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateMisfiredTriggers(ConnectionAndTransactionHolder, IReadOnlyList<MisfiredTriggerUpdate>, CancellationToken)
Applies a whole batch of misfire updates. Semantically identical to calling UpdateMisfiredTrigger(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, DateTimeOffset?, CancellationToken) once per entry, but collapses the statements into a single round-trip on providers that support batching.
ValueTask UpdateMisfiredTriggers(ConnectionAndTransactionHolder conn, IReadOnlyList<MisfiredTriggerUpdate> updates, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
updatesIReadOnlyList<MisfiredTriggerUpdate>The triggers, after
UpdateAfterMisfirehas been applied in-memory.cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateSchedulerState(ConnectionAndTransactionHolder, string, DateTimeOffset, CancellationToken)
Update a scheduler-instance state record.
ValueTask<int> UpdateSchedulerState(ConnectionAndTransactionHolder conn, string instanceId, DateTimeOffset checkInTime, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
instanceIdstringThe instance id.
checkInTimeDateTimeOffsetThe check in time.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTrigger(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, IJobDetail, CancellationToken)
Update the base trigger data.
ValueTask<int> UpdateTrigger(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, StoredTriggerState state, IJobDetail jobDetail, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderthe DB Connection
triggerIOperableTriggerThe trigger.
stateStoredTriggerStateThe state.
jobDetailIJobDetailThe job detail.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerForRetry(ConnectionAndTransactionHolder, IOperableTrigger, StoredTriggerState, CancellationToken)
Writes the retry a completing trigger has just scheduled for itself: where it fires next, how many attempts at the current occurrence are behind it, and the state it waits in.
ValueTask<int> UpdateTriggerForRetry(ConnectionAndTransactionHolder conn, IOperableTrigger trigger, StoredTriggerState newState, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
triggerIOperableTriggerThe completing trigger, carrying the retry instant as its next fire time and the incremented attempt.
newStateStoredTriggerStateThe state to leave the trigger in — waiting, or paused if its group is.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Narrow on purpose. The trigger's schedule has not changed — only which instant it fires at next — so the generic trigger UPDATE would write a row's worth of columns to move one, and would write back a preferred node and a job data map this path has no business touching.
- See Also
UpdateTriggerGroupStateFromOtherState(ConnectionAndTransactionHolder, GroupMatcher<TriggerKey>, StoredTriggerState, StoredTriggerState, CancellationToken)
Update all of the triggers the group matcher selects to the given new state, if they are in the given old state.
ValueTask<int> UpdateTriggerGroupStateFromOtherState(ConnectionAndTransactionHolder conn, GroupMatcher<TriggerKey> matcher, StoredTriggerState newState, StoredTriggerState oldState, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection
matcherGroupMatcher<TriggerKey>Criteria for matching groups.
newStateStoredTriggerStateThe new state for the trigger group
oldStateStoredTriggerStateThe old state the triggers must be in.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Matcher-based rather than query-based on purpose: this is the pause/resume mutation path, which has to move every matching trigger under one lock and therefore cannot be paged.
UpdateTriggerGroupStateFromOtherStates(ConnectionAndTransactionHolder, GroupMatcher<TriggerKey>, StoredTriggerState, IReadOnlyCollection<StoredTriggerState>, CancellationToken)
Update all triggers the group matcher selects to the given new state, if they are in one of the given old states.
ValueTask<int> UpdateTriggerGroupStateFromOtherStates(ConnectionAndTransactionHolder conn, GroupMatcher<TriggerKey> matcher, StoredTriggerState newState, IReadOnlyCollection<StoredTriggerState> oldStates, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection
matcherGroupMatcher<TriggerKey>Criteria for matching groups.
newStateStoredTriggerStateThe new state for the trigger
oldStatesIReadOnlyCollection<StoredTriggerState>The states a trigger must be in to be updated. Must not be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Matcher-based rather than query-based on purpose: this is the pause/resume mutation path, which has to move every matching trigger under one lock and therefore cannot be paged.
UpdateTriggerPreferredNodeConditional(ConnectionAndTransactionHolder, TriggerKey, PreferredNodeTransition, CancellationToken)
Updates the preferred node columns for a trigger only when they still hold the expected values (compare-and-swap). Used by the auto-pin claim/steal in TriggerFired so a concurrent re-pin or clear (e.g. via UpdateTriggerDetails between acquisition and firing) wins over the claim instead of being clobbered by it.
ValueTask<int> UpdateTriggerPreferredNodeConditional(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, PreferredNodeTransition transition, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
triggerKeyTriggerKeyThe key identifying the trigger.
transitionPreferredNodeTransitionThe pin the row must still hold, and the one to put in its place.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
- ValueTask<int>
Number of rows updated: 1 when the claim succeeded, 0 when the value changed concurrently.
UpdateTriggerState(ConnectionAndTransactionHolder, TriggerKey, StoredTriggerState, CancellationToken)
Update the state for a given trigger.
ValueTask<int> UpdateTriggerState(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, StoredTriggerState state, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
triggerKeyTriggerKeyThe key identifying the trigger.
stateStoredTriggerStateThe new state for the trigger.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStateFromOtherState(ConnectionAndTransactionHolder, TriggerKey, StoredTriggerState, StoredTriggerState, CancellationToken)
Update the given trigger to the given new state, if it is in the given old state.
ValueTask<int> UpdateTriggerStateFromOtherState(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, StoredTriggerState newState, StoredTriggerState oldState, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection
triggerKeyTriggerKeyThe key identifying the trigger.
newStateStoredTriggerStateThe new state for the trigger
oldStateStoredTriggerStateThe old state the trigger must be in
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStateFromOtherStateWithNextFireTime(ConnectionAndTransactionHolder, TriggerKey, StoredTriggerState, StoredTriggerState, DateTimeOffset, CancellationToken)
Update the given trigger to the given new state, if it is in the given old state and has the given next fire time.
ValueTask<int> UpdateTriggerStateFromOtherStateWithNextFireTime(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, StoredTriggerState newState, StoredTriggerState oldState, DateTimeOffset nextFireTime, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection
triggerKeyTriggerKeyThe key identifying the trigger.
newStateStoredTriggerStateThe new state for the trigger
oldStateStoredTriggerStateThe old state the trigger must be in
nextFireTimeDateTimeOffsetThe next fire time the trigger must have
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStateFromOtherStates(ConnectionAndTransactionHolder, TriggerKey, StoredTriggerState, IReadOnlyCollection<StoredTriggerState>, CancellationToken)
Update the given trigger to the given new state, if it is one of the given old states.
ValueTask<int> UpdateTriggerStateFromOtherStates(ConnectionAndTransactionHolder conn, TriggerKey triggerKey, StoredTriggerState newState, IReadOnlyCollection<StoredTriggerState> oldStates, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection
triggerKeyTriggerKeyThe key identifying the trigger.
newStateStoredTriggerStateThe new state for the trigger
oldStatesIReadOnlyCollection<StoredTriggerState>The states the trigger must be in to be updated. Must not be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStatesForJob(ConnectionAndTransactionHolder, JobKey, StoredTriggerState, CancellationToken)
Update the states of all triggers associated with the given job.
ValueTask<int> UpdateTriggerStatesForJob(ConnectionAndTransactionHolder conn, JobKey jobKey, StoredTriggerState state, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
stateStoredTriggerStateThe new state for the triggers.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStatesForJobFromOtherState(ConnectionAndTransactionHolder, JobKey, StoredTriggerState, StoredTriggerState, CancellationToken)
Update the states of any triggers associated with the given job, that are the given current state.
ValueTask<int> UpdateTriggerStatesForJobFromOtherState(ConnectionAndTransactionHolder conn, JobKey jobKey, StoredTriggerState newState, StoredTriggerState oldState, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
newStateStoredTriggerStateThe new state for the triggers
oldStateStoredTriggerStateThe old state of the triggers
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStatesForJobFromOtherState(ConnectionAndTransactionHolder, JobKey, IReadOnlyList<TriggerStateTransition>, CancellationToken)
Apply several conditional state changes to a job's triggers in as few round trips as the provider allows.
ValueTask UpdateTriggerStatesForJobFromOtherState(ConnectionAndTransactionHolder conn, JobKey jobKey, IReadOnlyList<TriggerStateTransition> transitions, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeyJobKeyThe key identifying the job.
transitionsIReadOnlyList<TriggerStateTransition>The state changes to apply, in order.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The transitions are applied in the order given, so a set of them that overlaps means what issuing them one after another meant. Blocking and unblocking a job's triggers is always two or three of these at once, which is two or three round trips inside the trigger-access lock when they travel separately.
UpdateTriggerStatesForJobsFromOtherState(ConnectionAndTransactionHolder, IReadOnlyCollection<JobKey>, StoredTriggerState, StoredTriggerState, CancellationToken)
Apply the same conditional state change to the triggers of each of several jobs, in as few round trips as the provider allows.
ValueTask UpdateTriggerStatesForJobsFromOtherState(ConnectionAndTransactionHolder conn, IReadOnlyCollection<JobKey> jobKeys, StoredTriggerState newState, StoredTriggerState oldState, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
jobKeysIReadOnlyCollection<JobKey>The keys identifying the jobs. An empty collection does nothing.
newStateStoredTriggerStateThe new state for the triggers
oldStateStoredTriggerStateThe old state a trigger must be in to be updated
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The same statement as the single-job overload, once per job key, issued as one DbBatch where the provider supports batching. Cluster recovery unblocks the siblings of every interrupted execution, which is one or two of these per fired-trigger row when they travel separately — and the same job over and over when a dead node left several rows behind. No row count comes back: a batch does not report one per command in any portable way, and the caller counts the rows it asked about rather than the rows that moved.
UpdateTriggerStatesFromOtherStates(ConnectionAndTransactionHolder, StoredTriggerState, IReadOnlyCollection<StoredTriggerState>, CancellationToken)
Update all triggers having one of the given states, to the given new state.
ValueTask<int> UpdateTriggerStatesFromOtherStates(ConnectionAndTransactionHolder conn, StoredTriggerState newState, IReadOnlyCollection<StoredTriggerState> oldStates, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB Connection
newStateStoredTriggerStateThe new state for the triggers
oldStatesIReadOnlyCollection<StoredTriggerState>The states a trigger must be in to be updated. Must not be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
UpdateTriggerStatesFromOtherStates(ConnectionAndTransactionHolder, IReadOnlyCollection<TriggerKey>, StoredTriggerState, IReadOnlyCollection<StoredTriggerState>, CancellationToken)
Moves a whole set of triggers to the given new state, each one only if it is in one of the given old states.
ValueTask<int> UpdateTriggerStatesFromOtherStates(ConnectionAndTransactionHolder conn, IReadOnlyCollection<TriggerKey> triggerKeys, StoredTriggerState newState, IReadOnlyCollection<StoredTriggerState> oldStates, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection
triggerKeysIReadOnlyCollection<TriggerKey>The keys identifying the triggers. May be empty.
newStateStoredTriggerStateThe new state for the triggers
oldStatesIReadOnlyCollection<StoredTriggerState>The states a trigger must be in to be updated. Must not be empty.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
The key-set form of the member above, for the paths that decide one transition for a set of keys and then have no reason to issue it a key at a time: pause, resume, and cluster recovery releasing every trigger a dead node had reserved. A set of one old state is how a caller that wants exactly one asks for it.
The default implementation is the per-key loop, so a delegate that says nothing about key sets
keeps behaving as it did. StdAdoDelegate issues one UPDATE with a key-set
predicate per chunk, so the row count is the database's own and not a tally of what was asked
about.
ValidateSchema(ConnectionAndTransactionHolder, CancellationToken)
Verifies that the schema objects this delegate reads and writes are there, and reports how many were checked.
ValueTask<int> ValidateSchema(ConnectionAndTransactionHolder conn, CancellationToken cancellationToken = default)
Parameters
connConnectionAndTransactionHolderThe DB connection.
cancellationTokenCancellationTokenThe cancellation instruction.
Returns
Remarks
Called at startup for every SchemaProvisioning but None, so that a missing or mis-prefixed table is reported once, by name, instead of as the first failing operation. A delegate that owns tables of its own checks those too.
Tables, and the columns 4.x added to the tables 3.x already had: a schema that took none of the 4.0 migration is missing one table and six columns, and a table-level check alone would pass a database that then fails every acquisition for ever. What it does not check is the shape of a column — a type or a width that a hand-built table got wrong is still found by the statement that binds it.
Exceptions
- JobPersistenceException
An object could not be queried.