1 write to StreamPool
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2Connection.cs (1)
193
StreamPool
= new PooledStreamStack<Http2Stream>(Math.Min(InitialStreamPoolSize, http2Limits.MaxStreamsPerConnection));
5 references to StreamPool
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http2\Http2Connection.cs (5)
333
StreamPool
.RemoveExpired(TimeProvider.GetTimestamp());
478
while (
StreamPool
.TryPop(out var pooledStream))
894
if (
StreamPool
.TryPop(out var stream))
1494
if (stream.CanReuse &&
StreamPool
.Count < MaxStreamPoolSize)
1501
StreamPool
.Push(stream);