1 write to rootQueuingService
System.Workflow.Runtime (1)
WorkflowQueuingService.cs (1)
67
this.
rootQueuingService
= copyFromQueuingService;
27 references to rootQueuingService
System.Workflow.Runtime (27)
WorkflowQueuingService.cs (27)
84
if (this.
rootQueuingService
!= null && !transactional)
86
return this.
rootQueuingService
.CreateWorkflowQueue(queueName, false);
104
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
106
this.
rootQueuingService
.DeleteWorkflowQueue(queueName);
132
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
134
return this.
rootQueuingService
.Exists(queueName);
148
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
150
return this.
rootQueuingService
.GetWorkflowQueue(queueName);
173
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
175
this.
rootQueuingService
.EnqueueEvent(queueName, item);
206
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
208
return this.
rootQueuingService
.SafeEnqueueEvent(queueName, item);
241
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
243
return this.
rootQueuingService
.Peek(queueName);
264
if (this.
rootQueuingService
!= null && !IsTransactionalQueue(queueName))
266
return this.
rootQueuingService
.DequeueEvent(queueName);
294
if (this.
rootQueuingService
!= null)
295
return this.
rootQueuingService
.CallingActivity;
300
if (this.
rootQueuingService
!= null)
301
this.
rootQueuingService
.CallingActivity = value;
532
Debug.Assert(this.
rootQueuingService
== null, "MarkQueueDirty should be done at root");
592
EventQueueState queueState = this.
rootQueuingService
.MarkQueueDirtyIfTransactional(queueName);
612
if (this.
rootQueuingService
== null)
614
this.
rootQueuingService
.AddMessageArrivedEventHandler(this);
619
if (this.
rootQueuingService
== null)
621
this.
rootQueuingService
.RemoveMessageArrivedEventHandler(this);
666
this.
rootQueuingService
.ApplyChangesFrom(this.pendingQueueState, this.persistedQueueStates);