4 writes to persistedQueueStates
System.Workflow.Runtime (4)
WorkflowQueuingService.cs (4)
54this.persistedQueueStates = (Dictionary<IComparable, EventQueueState>)this.rootWorkflowExecutor.RootActivity.GetValue(WorkflowQueuingService.RootPersistedQueueStatesProperty); 57this.persistedQueueStates = new Dictionary<IComparable, EventQueueState>(); 70this.persistedQueueStates = new Dictionary<IComparable, EventQueueState>(); 691persistedQueueStates = persistedQueueStatesSnapshot;
22 references to persistedQueueStates
System.Workflow.Runtime (22)
WorkflowQueuingService.cs (22)
55if (this.persistedQueueStates == null) 58this.rootWorkflowExecutor.RootActivity.SetValue(WorkflowQueuingService.RootPersistedQueueStatesProperty, this.persistedQueueStates); 71this.rootWorkflowExecutor.RootActivity.SetValue(WorkflowQueuingService.LocalPersistedQueueStatesProperty, this.persistedQueueStates); 121this.persistedQueueStates.Remove(queueName); 137return this.persistedQueueStates.ContainsKey(queueName); 326if (qService.persistedQueueStates.TryGetValue(queueName, out queueState) && 343if (service.persistedQueueStates.ContainsKey(pair.Key)) 382foreach (EventQueueState queueState in this.persistedQueueStates.Values) 415if (this.persistedQueueStates.ContainsKey(queueID)) 429this.persistedQueueStates.Add(queueID, queueState); 435if (this.persistedQueueStates.TryGetValue(queueID, out queue)) 453List<IComparable> list = new List<IComparable>(this.persistedQueueStates.Keys); 478if (this.persistedQueueStates.ContainsKey(mergeItem.Key)) 480EventQueueState oldvalue = this.persistedQueueStates[mergeItem.Key]; 500this.persistedQueueStates[modifiedItem.Key] = modifiedItem.Value; 534if (!this.persistedQueueStates.ContainsKey(queueName)) 590if (!this.persistedQueueStates.ContainsKey(queueName)) 600this.persistedQueueStates.Add(queueName, snapshotState); 630if (this.persistedQueueStates.ContainsKey(queueName)) 647if (this.persistedQueueStates.ContainsKey(queueName)) 666this.rootQueuingService.ApplyChangesFrom(this.pendingQueueState, this.persistedQueueStates); 716foreach (KeyValuePair<IComparable, EventQueueState> kv in persistedQueueStates)