4 writes to currentExecution
System.Runtime.DurableInstancing (4)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (4)
1103this.currentExecution = (new List<InstancePersistenceCommand> { command }).GetEnumerator(); 1315this.currentExecution = this.executionStack.Pop(); 1319this.currentExecution = null; 1412this.currentExecution = reduction.GetEnumerator();
4 references to currentExecution
System.Runtime.DurableInstancing (4)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (4)
1185while (this.currentExecution != null) 1187if (this.currentExecution.MoveNext()) 1191CurrentCommand = this.currentExecution.Current; 1411this.executionStack.Push(this.currentExecution);