Uses of Interface
org.eclipse.jetty.server.ConnectionFactory
Packages that use ConnectionFactory
Package
Description
Jetty Server : Core Server API
Jetty Server : Core Server Connector
-
Uses of ConnectionFactory in org.eclipse.jetty.server
Subinterfaces of ConnectionFactory in org.eclipse.jetty.serverModifier and TypeInterfaceDescriptionstatic interface
Connections created by this factory MUST implementConnection.UpgradeTo
.static interface
Classes in org.eclipse.jetty.server that implement ConnectionFactoryModifier and TypeClassDescriptionclass
Provides the common handling forConnectionFactory
implementations including:class
AConnectionFactory
combining multipleConnectionFactory.Detecting
instances that will upgrade to the first one recognizing the bytes in the buffer.class
A Connection Factory for HTTP Connections.class
class
Deprecated.class
ConnectionFactory for the PROXY Protocol.private static class
private static class
class
Fields in org.eclipse.jetty.server declared as ConnectionFactoryModifier and TypeFieldDescriptionprivate ConnectionFactory
AbstractConnector._defaultConnectionFactory
private final ConnectionFactory
ProxyConnectionFactory.ProxyV1ConnectionFactory.ProxyProtocolV1Connection._next
private final ConnectionFactory
ProxyConnectionFactory.ProxyV2ConnectionFactory.ProxyProtocolV2Connection._next
Fields in org.eclipse.jetty.server with type parameters of type ConnectionFactoryModifier and TypeFieldDescriptionprivate final Map
<String, ConnectionFactory> AbstractConnector._factories
Methods in org.eclipse.jetty.server that return ConnectionFactoryModifier and TypeMethodDescriptionprivate static ConnectionFactory
ProxyConnectionFactory.findNextConnectionFactory
(String nextProtocol, Connector connector, String currentProtocol, EndPoint endp) AbstractConnector.getConnectionFactory
(String protocol) Connector.getConnectionFactory
(String nextProtocol) AbstractConnector.getDefaultConnectionFactory()
Connector.getDefaultConnectionFactory()
static ConnectionFactory[]
AbstractConnectionFactory.getFactories
(SslContextFactory sslContextFactory, ConnectionFactory... factories) AbstractConnector.removeConnectionFactory
(String protocol) Methods in org.eclipse.jetty.server that return types with arguments of type ConnectionFactoryModifier and TypeMethodDescriptionAbstractConnector.getConnectionFactories()
Connector.getConnectionFactories()
Methods in org.eclipse.jetty.server with parameters of type ConnectionFactoryModifier and TypeMethodDescriptionvoid
AbstractConnector.addConnectionFactory
(ConnectionFactory factory) void
AbstractConnector.addFirstConnectionFactory
(ConnectionFactory factory) void
AbstractConnector.addIfAbsentConnectionFactory
(ConnectionFactory factory) static ConnectionFactory[]
AbstractConnectionFactory.getFactories
(SslContextFactory sslContextFactory, ConnectionFactory... factories) protected static void
DetectorConnectionFactory.upgradeToConnectionFactory
(ConnectionFactory connectionFactory, Connector connector, EndPoint endPoint) Utility method that performs an upgrade to the specified connection factory, disposing of the given resources when needed.Method parameters in org.eclipse.jetty.server with type arguments of type ConnectionFactoryModifier and TypeMethodDescriptionvoid
AbstractConnector.setConnectionFactories
(Collection<ConnectionFactory> factories) Constructors in org.eclipse.jetty.server with parameters of type ConnectionFactoryModifierConstructorDescriptionAbstractConnector
(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories) AbstractNetworkConnector
(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories) LocalConnector
(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, ConnectionFactory... factories) LocalConnector
(Server server, ConnectionFactory connectionFactory) LocalConnector
(Server server, ConnectionFactory connectionFactory, SslContextFactory sslContextFactory) NetworkTrafficServerConnector
(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, int selectors, ConnectionFactory... factories) NetworkTrafficServerConnector
(Server server, ConnectionFactory connectionFactory) NetworkTrafficServerConnector
(Server server, ConnectionFactory connectionFactory, SslContextFactory sslContextFactory) private
ProxyProtocolV1Connection
(EndPoint endp, Connector connector, ConnectionFactory next) protected
ProxyProtocolV2Connection
(EndPoint endp, Connector connector, ConnectionFactory next) ServerConnector
(Server server, int acceptors, int selectors, ConnectionFactory... factories) Construct a ServerConnector with a private instance ofHttpConnectionFactory
as the only factory.ServerConnector
(Server server, Executor executor, Scheduler scheduler, ByteBufferPool bufferPool, int acceptors, int selectors, ConnectionFactory... factories) ServerConnector
(Server server, ConnectionFactory... factories) Construct a Server Connector with the passed Connection factories.ServerConnector
(Server server, SslContextFactory sslContextFactory, ConnectionFactory... factories) -
Uses of ConnectionFactory in org.eclipse.jetty.server.nio
Constructors in org.eclipse.jetty.server.nio with parameters of type ConnectionFactoryModifierConstructorDescriptionNetworkTrafficSelectChannelConnector
(Server server, Executor executor, Scheduler scheduler, ByteBufferPool pool, int acceptors, int selectors, ConnectionFactory... factories) Deprecated.NetworkTrafficSelectChannelConnector
(Server server, ConnectionFactory connectionFactory) Deprecated.NetworkTrafficSelectChannelConnector
(Server server, ConnectionFactory connectionFactory, SslContextFactory sslContextFactory) Deprecated.
DetectorConnectionFactory
with aSslConnectionFactory
instead.