1 write to lockingProvider
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
72
this.
lockingProvider
= persistenceProvider as LockingPersistenceProvider;
21 references to lockingProvider
System.WorkflowServices (21)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (21)
167
if (this.
lockingProvider
!= null)
173
this.
lockingProvider
.Unlock(this.operationTimeout);
199
if (this.
lockingProvider
!= null)
201
this.
lockingProvider
.Create(this.Instance, this.operationTimeout, disposeInstance);
210
string traceText = SR2.GetString(SR2.ServiceDurableInstanceSavedDetails, this.InstanceId, (this.
lockingProvider
!= null) ? "True" : "False");
223
if (this.
lockingProvider
!= null)
225
this.
lockingProvider
.Update(this.Instance, this.operationTimeout, disposeInstance);
234
string traceText = SR2.GetString(SR2.ServiceDurableInstanceSavedDetails, this.InstanceId, (this.
lockingProvider
!= null) ? "True" : "False");
294
if (this.
lockingProvider
!= null)
296
this.instance = this.
lockingProvider
.Load(this.operationTimeout, true);
305
string traceText = SR2.GetString(SR2.ServiceDurableInstanceLoadedDetails, this.InstanceId, (this.
lockingProvider
!= null) ? "True" : "False");
477
if (this.
lockingProvider
!= null)
571
if (this.durableInstance.
lockingProvider
!= null)
577
result = this.durableInstance.
lockingProvider
.BeginUnlock(this.durableInstance.operationTimeout, unlockCallback, this);
594
if (this.durableInstance.
lockingProvider
!= null)
596
result = this.durableInstance.
lockingProvider
.BeginCreate(this.durableInstance.Instance, this.durableInstance.operationTimeout, disposeInstace, createCallback, this);
609
if (this.durableInstance.
lockingProvider
!= null)
611
result = this.durableInstance.
lockingProvider
.BeginUpdate(this.durableInstance.Instance, this.durableInstance.operationTimeout, disposeInstace, updateCallback, this);
718
this.durableInstance.
lockingProvider
.EndUnlock(result);
802
if (this.durableInstance.
lockingProvider
!= null)
804
result = this.durableInstance.
lockingProvider
.BeginLoad(this.durableInstance.operationTimeout, true, loadCallback, this);