4 instantiations of ExecuteAsyncResult
System.Runtime.DurableInstancing (4)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (4)
699ExecuteAsyncResult.End(new ExecuteAsyncResult(this, command, timeout)); 726return new ExecuteAsyncResult(this, command, timeout, callback, state); 810return ExecuteAsyncResult.End(new ExecuteAsyncResult(initialInstanceHandle, command, transaction, timeout)); 828return new ExecuteAsyncResult(initialInstanceHandle, command, transaction, timeout, callback, state);
27 references to ExecuteAsyncResult
System.Runtime.DurableInstancing (27)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (27)
105ExecuteAsyncResult RootAsyncResult { get; set; } 106ExecuteAsyncResult LastAsyncResult { get; set; } 699ExecuteAsyncResult.End(new ExecuteAsyncResult(this, command, timeout)); 744ExecuteAsyncResult.End(result); 783ExecuteAsyncResult lastAsyncResult = LastAsyncResult; 810return ExecuteAsyncResult.End(new ExecuteAsyncResult(initialInstanceHandle, command, transaction, timeout)); 845InstanceView finalState = ExecuteAsyncResult.End(result); 945readonly ExecuteAsyncResult priorAsyncResult; 965IAsyncResult result = this.initialInstanceHandle.BeginAcquireExecutionContext(transaction, this.timeoutHelper.RemainingTime(), PrepareAsyncCompletion(ExecuteAsyncResult.onAcquireContext), this); 1113ExecuteAsyncResult current = this; 1167ExecuteAsyncResult thisPtr = AsyncResult.End<ExecuteAsyncResult>(result); 1174ExecuteAsyncResult thisPtr = (ExecuteAsyncResult)result.AsyncState; 1287result = this.context.InstanceHandle.Store.BeginTryCommand(this.context, CurrentCommand, this.timeoutHelper.RemainingTime(), PrepareAsyncCompletion(ExecuteAsyncResult.onTryCommand), this); 1298if (!bindReclaimedLockException.MarkerWaitHandle.WaitAsync(ExecuteAsyncResult.onBindReclaimed, this, this.timeoutHelper.RemainingTime())) 1346result = this.transactionToCommit.BeginCommit(PrepareAsyncCompletion(ExecuteAsyncResult.onCommit), this); 1364ExecuteAsyncResult thisPtr = (ExecuteAsyncResult)result.AsyncState; 1385if (!bindReclaimedLockException.MarkerWaitHandle.WaitAsync(ExecuteAsyncResult.onBindReclaimed, this, this.timeoutHelper.RemainingTime())) 1418ExecuteAsyncResult thisPtr = (ExecuteAsyncResult)state; 1459ExecuteAsyncResult thisPtr = (ExecuteAsyncResult)result.AsyncState; 1487if (!this.waitForTransaction.WaitAsync(ExecuteAsyncResult.onCommitWait, this, this.timeoutHelper.RemainingTime())) 1522ExecuteAsyncResult thisPtr = (ExecuteAsyncResult)state;