1 write to StreamPool
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2Connection.cs (1)
189
StreamPool
= new PooledStreamStack<Http2Stream>(Math.Min(InitialStreamPoolSize, http2Limits.MaxStreamsPerConnection));
5 references to StreamPool
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http2\Http2Connection.cs (5)
329
StreamPool
.RemoveExpired(TimeProvider.GetTimestamp());
474
while (
StreamPool
.TryPop(out var pooledStream))
878
if (
StreamPool
.TryPop(out var stream))
1460
if (stream.CanReuse &&
StreamPool
.Count < MaxStreamPoolSize)
1467
StreamPool
.Push(stream);