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