JobStoreSupport ExecuteWithoutLock Method Quartz.NET API Documentation
Execute the given callback in a transaction. Depending on the JobStore, the surrounding transaction may be assumed to be already present (managed).

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

protected Object ExecuteWithoutLock(
	JobStoreSupport ITransactionCallback txCallback
)

Parameters

txCallback
Type: Quartz.Impl.AdoJobStore JobStoreSupport ITransactionCallback

[Missing <param name="txCallback"/> documentation for "M:Quartz.Impl.AdoJobStore.JobStoreSupport.ExecuteWithoutLock(Quartz.Impl.AdoJobStore.JobStoreSupport.ITransactionCallback)"]

Return Value

Type: Object

[Missing <returns> documentation for "M:Quartz.Impl.AdoJobStore.JobStoreSupport.ExecuteWithoutLock(Quartz.Impl.AdoJobStore.JobStoreSupport.ITransactionCallback)"]

Remarks

This method just forwards to ExecuteInLock() with a null lockName.
See Also