2 implementations of IConnectionListener
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\TransportManager.cs (2)
197private sealed class GenericConnectionListener : IConnectionListener<ConnectionContext> 218private sealed class GenericMultiplexedConnectionListener : IConnectionListener<MultiplexedConnectionContext>
3 references to IConnectionListener
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\ConnectionDispatcher.cs (2)
27public Task StartAcceptingConnections(IConnectionListener<T> listener) 33private void StartAcceptingConnectionsCore(IConnectionListener<T> listener)
Internal\Infrastructure\TransportManager.cs (1)
98private void StartAcceptLoop<T>(IConnectionListener<T> connectionListener, Func<T, Task> connectionDelegate, EndpointConfig? endpointConfig) where T : BaseConnectionContext