1 write to _http3RequestQueue
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.cs (1)
250
_http3RequestQueue
= new RequestQueue<Http3Connection?>();
9 references to _http3RequestQueue
System.Net.Http (9)
System\Net\Http\SocketsHttpHandler\ConnectionPool\HttpConnectionPool.Http3.cs (9)
149
waiter =
_http3RequestQueue
.EnqueueRequest(request);
208
_http3RequestQueue
.PruneCompletedRequestsFromHeadOfQueue(this);
214
_http3RequestQueue
.Count > 0 && // There are requests left on the queue
216
_http3RequestQueue
.RequestsWithoutAConnectionAttempt > 0; // There are requests we haven't issued a connection attempt for
222
$"Requests in the queue: {
_http3RequestQueue
.Count}, " +
223
$"Requests without a connection attempt: {
_http3RequestQueue
.RequestsWithoutAConnectionAttempt}, " +
233
RequestQueue<Http3Connection?>.QueueItem queueItem =
_http3RequestQueue
.PeekNextRequestForConnectionAttempt();
409
_http3RequestQueue
.TryDequeueSpecificWaiter(waiter);
411
else if (
_http3RequestQueue
.TryDequeueWaiter(this, out waiter))