1 instantiation of SocketSender
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
Internal\SocketSenderPool.cs (1)
32return new SocketSender(_scheduler);
6 references to SocketSender
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (6)
Internal\SocketConnection.cs (1)
20private SocketSender? _sender;
Internal\SocketSenderPool.cs (5)
13private readonly ConcurrentQueue<SocketSender> _queue = new(); 25public SocketSender Rent() 27if (_queue.TryDequeue(out var sender)) 35public void Return(SocketSender sender) 54while (_queue.TryDequeue(out var sender))