Class TriggerPersistenceDelegateContext
- Namespace
- Quartz.Impl.AdoJobStore
- Assembly
- Quartz.dll
The settings a ITriggerPersistenceDelegate works from, handed to Initialize(TriggerPersistenceDelegateContext) once by the driver delegate before the persistence delegate is used.
public sealed record TriggerPersistenceDelegateContext : IEquatable<TriggerPersistenceDelegateContext>
- Inheritance
-
TriggerPersistenceDelegateContext
- Implements
- Inherited Members
Properties
DbAccessor
Command preparation and parameter binding for the type table this delegate owns, which is the driver delegate itself.
public required IDbAccessor DbAccessor { get; init; }
Property Value
SchedulerName
Name of the scheduler whose rows the delegate reads and writes, stored in SCHED_NAME.
public required string SchedulerName { get; init; }
Property Value
TablePrefix
The prefix of all table names.
public required string TablePrefix { get; init; }