CSharpAnalytics.Network.BackgroundHttpRequester.GetNextQueueEntry C# (CSharp) Method

GetNextQueueEntry() private method

Get the next entry from the queue.
private GetNextQueueEntry ( Uri &entry ) : bool
entry System.Uri Entry obtained from the queue.
return bool
        private bool GetNextQueueEntry(out Uri entry)
        {
            var requestQueue = priorRequests.Count > 0 ? priorRequests : currentRequests;
            return requestQueue.TryDequeue(out entry);
        }