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