2 instantiations of WorkBatch
System.Workflow.Runtime (2)
WorkBatch.cs (2)
353batch = new WorkBatch(this); 385WorkBatch batch = new WorkBatch(this);
17 references to WorkBatch
System.Workflow.Runtime (17)
VolatileResourceManager.cs (4)
18private WorkBatch _mergedBatch = null; 41WorkBatch batch = (WorkBatch)de.Value; 49WorkBatch GetMergedBatch()
WorkBatch.cs (11)
118internal void Merge(WorkBatch batch) 309internal sealed class WorkBatchCollection : Dictionary<object, WorkBatch> 346WorkBatch batch = null; 365private WorkBatch FindBatch(object id) 367WorkBatch batch = null; 381internal WorkBatch GetMergedBatch() 385WorkBatch batch = new WorkBatch(this); 387foreach (WorkBatch existingBatch in this.Values) 401WorkBatch batch = FindBatch(id); 416foreach (WorkBatch batch in this.Values) 430foreach (WorkBatch existingBatch in this.Values)
WorkflowExecutor.cs (1)
1148foreach (WorkBatch workBatch in ResourceManager.BatchCollection.Values)
WorkflowStateRollbackService.cs (1)
114foreach (KeyValuePair<object, WorkBatch> batch in this.workflowExecutor.BatchCollection)