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