1 instantiation of MemoryPoolMetrics
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\Shared\Buffers.MemoryPool\MemoryPoolFactory.cs (1)
24return new PinnedBlockMemoryPool(owner: owner, metrics: meterFactory != null ? new MemoryPoolMetrics(meterFactory) : null);
4 references to MemoryPoolMetrics
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (4)
src\Shared\Buffers.MemoryPool\DefaultMemoryPoolFactory.cs (2)
17private readonly MemoryPoolMetrics? _metrics; 23public DefaultMemoryPoolFactory(MemoryPoolMetrics? metrics = null, ILogger<DefaultMemoryPoolFactory>? logger = null)
src\Shared\Buffers.MemoryPool\PinnedBlockMemoryPool.cs (2)
52private readonly MemoryPoolMetrics? _metrics; 73public PinnedBlockMemoryPool(string? owner = null, MemoryPoolMetrics? metrics = null, ILogger? logger = null)