1 instantiation of LoadRetryAsyncResult
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (1)
349return new LoadRetryAsyncResult(this, context, command, timeout, callback, state);
18 references to LoadRetryAsyncResult
System.Activities.DurableInstancing (18)
System\Activities\DurableInstancing\LoadRetryAsyncResult.cs (6)
33this.commandTimeout.RemainingTime(), LoadRetryAsyncResult.onTryCommandCallback, this); 62LoadRetryAsyncResult thisPtr = AsyncResult.End<LoadRetryAsyncResult>(result); 75this.commandTimeout.RemainingTime(), LoadRetryAsyncResult.onTryCommandCallback, this); 82LoadRetryAsyncResult tryCommandAsyncResult = (LoadRetryAsyncResult)(result.AsyncState);
System\Activities\DurableInstancing\LoadRetryHandler.cs (9)
14BinaryHeap<DateTime, LoadRetryAsyncResult> retryQueue; 20this.retryQueue = new BinaryHeap<DateTime, LoadRetryAsyncResult>(); 25public bool Enqueue(LoadRetryAsyncResult command) 47ICollection<KeyValuePair<DateTime, LoadRetryAsyncResult>> result; 54foreach (KeyValuePair<DateTime, LoadRetryAsyncResult> value in result) 60LoadRetryAsyncResult tryCommandResult = data as LoadRetryAsyncResult; 71ICollection<KeyValuePair<DateTime, LoadRetryAsyncResult>> retryList; 106foreach (KeyValuePair<DateTime, LoadRetryAsyncResult> retry in retryList)
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (3)
377if (result is LoadRetryAsyncResult) 379return LoadRetryAsyncResult.End(result); 465internal bool EnqueueRetry(LoadRetryAsyncResult loadRetryAsyncResult)