Uses of Interface
org.eclipse.jetty.io.Connection
-
Packages that use Connection Package Description org.eclipse.jetty.client Jetty Client : Implementation and Core Classes This package provides APIs, utility classes and an implementation of an asynchronous HTTP client.org.eclipse.jetty.client.http org.eclipse.jetty.io Jetty IO : Core classes for Jetty IO subsystemorg.eclipse.jetty.io.ssl Jetty IO : Core SSL Supportorg.eclipse.jetty.proxy Jetty Proxy : Async Proxy Supportorg.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.handler Jetty Server : Core Handler API -
-
Uses of Connection in org.eclipse.jetty.client
Methods in org.eclipse.jetty.client that return Connection Modifier and Type Method Description Connection
AbstractConnectorHttpClientTransport.ClientSelectorManager. newConnection(java.nio.channels.SelectableChannel channel, EndPoint endPoint, java.lang.Object attachment)
Connection
Socks4Proxy.Socks4ProxyClientConnectionFactory. newConnection(EndPoint endPoint, java.util.Map<java.lang.String,java.lang.Object> context)
-
Uses of Connection in org.eclipse.jetty.client.http
Classes in org.eclipse.jetty.client.http that implement Connection Modifier and Type Class Description class
HttpConnectionOverHTTP
Methods in org.eclipse.jetty.client.http that return Connection Modifier and Type Method Description Connection
HttpClientTransportOverHTTP. newConnection(EndPoint endPoint, java.util.Map<java.lang.String,java.lang.Object> context)
-
Uses of Connection in org.eclipse.jetty.io
Classes in org.eclipse.jetty.io that implement Connection Modifier and Type Class Description class
AbstractConnection
A convenience base implementation ofConnection
.class
NegotiatingClientConnection
Methods in org.eclipse.jetty.io that return Connection Modifier and Type Method Description default Connection
ClientConnectionFactory. customize(Connection connection, java.util.Map<java.lang.String,java.lang.Object> context)
Connection
AbstractEndPoint. getConnection()
Connection
EndPoint. getConnection()
Connection
ClientConnectionFactory. newConnection(EndPoint endPoint, java.util.Map<java.lang.String,java.lang.Object> context)
abstract Connection
SelectorManager. newConnection(java.nio.channels.SelectableChannel channel, EndPoint endpoint, java.lang.Object attachment)
Factory method to createConnection
.Methods in org.eclipse.jetty.io with parameters of type Connection Modifier and Type Method Description void
SelectorManager. connectionClosed(Connection connection)
Callback method invoked when a connection is closed.void
SelectorManager. connectionOpened(Connection connection)
Callback method invoked when a connection is opened.default Connection
ClientConnectionFactory. customize(Connection connection, java.util.Map<java.lang.String,java.lang.Object> context)
void
Connection.Listener.Adapter. onClosed(Connection connection)
void
Connection.Listener. onClosed(Connection connection)
void
ConnectionStatistics. onClosed(Connection connection)
void
Connection.Listener.Adapter. onOpened(Connection connection)
void
Connection.Listener. onOpened(Connection connection)
void
ConnectionStatistics. onOpened(Connection connection)
void
AbstractEndPoint. setConnection(Connection connection)
void
EndPoint. setConnection(Connection connection)
void
AbstractEndPoint. upgrade(Connection newConnection)
void
EndPoint. upgrade(Connection newConnection)
Upgrade connections. -
Uses of Connection in org.eclipse.jetty.io.ssl
Classes in org.eclipse.jetty.io.ssl that implement Connection Modifier and Type Class Description class
SslConnection
A Connection that acts as an interceptor between an EndPoint providing SSL encrypted data and another consumer of an EndPoint (typically anConnection
like HttpConnection) that wants unencrypted data.Methods in org.eclipse.jetty.io.ssl that return Connection Modifier and Type Method Description Connection
SslClientConnectionFactory. customize(Connection connection, java.util.Map<java.lang.String,java.lang.Object> context)
Connection
SslClientConnectionFactory. newConnection(EndPoint endPoint, java.util.Map<java.lang.String,java.lang.Object> context)
Methods in org.eclipse.jetty.io.ssl with parameters of type Connection Modifier and Type Method Description default void
ALPNProcessor. configure(javax.net.ssl.SSLEngine sslEngine, Connection connection)
Configures the given SSLEngine and the given Connection for ALPN.Connection
SslClientConnectionFactory. customize(Connection connection, java.util.Map<java.lang.String,java.lang.Object> context)
void
SslConnection.DecryptedEndPoint. setConnection(Connection connection)
-
Uses of Connection in org.eclipse.jetty.proxy
Classes in org.eclipse.jetty.proxy that implement Connection Modifier and Type Class Description class
ConnectHandler.DownstreamConnection
class
ConnectHandler.UpstreamConnection
class
ProxyConnection
Methods in org.eclipse.jetty.proxy that return Connection Modifier and Type Method Description Connection
ProxyConnection. getConnection()
Connection
ConnectHandler.ConnectManager. newConnection(java.nio.channels.SelectableChannel channel, EndPoint endpoint, java.lang.Object attachment)
Methods in org.eclipse.jetty.proxy with parameters of type Connection Modifier and Type Method Description void
ProxyConnection. setConnection(Connection connection)
-
Uses of Connection in org.eclipse.jetty.server
Classes in org.eclipse.jetty.server that implement Connection Modifier and Type Class Description class
HttpConnection
AConnection
that handles the HTTP protocol.class
NegotiatingServerConnection
static class
ProxyConnectionFactory.ProxyProtocolV1Connection
class
ProxyConnectionFactory.ProxyProtocolV1orV2Connection
class
ProxyConnectionFactory.ProxyProtocolV2Connection
Methods in org.eclipse.jetty.server that return Connection Modifier and Type Method Description Connection
HttpChannel. getConnection()
Connection
ProxyConnectionFactory.ProxyEndPoint. getConnection()
Connection
ConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Creates a newConnection
with the given parametersConnection
HttpConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
NegotiatingServerConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
OptionalSslConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
ProxyConnectionFactory. newConnection(Connector connector, EndPoint endp)
Connection
ServerConnector.ServerConnectorManager. newConnection(java.nio.channels.SelectableChannel channel, EndPoint endpoint, java.lang.Object attachment)
Connection
SslConnectionFactory. newConnection(Connector connector, EndPoint endPoint)
Connection
ConnectionFactory.Upgrading. upgradeConnection(Connector connector, EndPoint endPoint, MetaData.Request upgradeRequest, HttpFields responseFields)
Create a connection for an upgrade request.Methods in org.eclipse.jetty.server with parameters of type Connection Modifier and Type Method Description void
ConnectionLimit. onClosed(Connection connection)
void
ConnectorStatistics. onClosed(Connection connection)
Deprecated.void
SocketCustomizationListener. onClosed(Connection connection)
void
ConnectionLimit. onOpened(Connection connection)
void
ConnectorStatistics. onOpened(Connection connection)
Deprecated.void
SocketCustomizationListener. onOpened(Connection connection)
void
ProxyConnectionFactory.ProxyEndPoint. setConnection(Connection connection)
void
ProxyConnectionFactory.ProxyEndPoint. upgrade(Connection newConnection)
Method parameters in org.eclipse.jetty.server with type arguments of type Connection Modifier and Type Method Description protected void
SocketCustomizationListener. customize(java.net.Socket socket, java.lang.Class<? extends Connection> connection, boolean ssl)
This method may be extended to configure a socket on open events. -
Uses of Connection in org.eclipse.jetty.server.handler
Methods in org.eclipse.jetty.server.handler with parameters of type Connection Modifier and Type Method Description void
DebugHandler. onClosed(Connection connection)
Deprecated.void
DebugHandler. onOpened(Connection connection)
Deprecated.
-