JobStoreSupportAcquireTriggersWithinLock Property

Quartz.NET 3.0 API Documentation
Whether or not the query and update to acquire a Trigger for firing should be performed after obtaining an explicit DB lock (to avoid possible race conditions on the trigger's db row). This is is considered unnecessary for most databases (due to the nature of the SQL update that is performed), and therefore a superfluous performance hit.

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

C#
public bool AcquireTriggersWithinLock { get; set; }

Property Value

Type: Boolean
Remarks

However, if batch acquisition is used, it is important for this behavior to be used for all dbs.
See Also

Reference