1 write to retryQueue
System.Activities.DurableInstancing (1)
System\Activities\DurableInstancing\LoadRetryHandler.cs (1)
20this.retryQueue = new BinaryHeap<DateTime, LoadRetryAsyncResult>();
7 references to retryQueue
System.Activities.DurableInstancing (7)
System\Activities\DurableInstancing\LoadRetryHandler.cs (7)
32firstInQueue = this.retryQueue.Enqueue(retryTime, command); 51result = this.retryQueue.RemoveAll(x => x.Value != null); 76if (!this.retryQueue.IsEmpty) 79DateTime expirationTime = retryQueue.Peek().Key; 97retryList = retryQueue.TakeWhile(x => currentTime.CompareTo(x) >= 0); 99if (!this.retryQueue.IsEmpty) 101DateTime expirationTime = this.retryQueue.Peek().Key;