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