| Package | Description |
|---|---|
| org.eclipse.jetty.io |
Jetty IO : Core classes for Jetty IO subsystem
|
| org.eclipse.jetty.io.ssl |
Jetty IO : Core SSL Support
|
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Connection.UpgradeFrom |
static interface |
Connection.UpgradeTo |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractConnection
A convenience base implementation of
Connection. |
class |
NegotiatingClientConnection |
| Modifier and Type | Method and Description |
|---|---|
Connection |
EndPoint.getConnection() |
Connection |
AbstractEndPoint.getConnection() |
Connection |
ClientConnectionFactory.newConnection(EndPoint endPoint,
Map<String,Object> context) |
abstract Connection |
SelectorManager.newConnection(SocketChannel channel,
EndPoint endpoint,
Object attachment)
Factory method to create
Connection. |
| Modifier and Type | Method and 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.
|
void |
Connection.Listener.onClosed(Connection connection) |
void |
Connection.Listener.Adapter.onClosed(Connection connection) |
void |
Connection.Listener.onOpened(Connection connection) |
void |
Connection.Listener.Adapter.onOpened(Connection connection) |
static void |
ClientConnectionFactory.Helper.replaceConnection(Connection oldConnection,
Connection newConnection)
Replaces the given
oldConnection with the given newConnection on the
EndPoint associated with oldConnection, performing connection lifecycle management. |
void |
EndPoint.setConnection(Connection connection) |
void |
AbstractEndPoint.setConnection(Connection connection) |
void |
EndPoint.upgrade(Connection newConnection)
Upgrade connections.
|
void |
AbstractEndPoint.upgrade(Connection newConnection) |
| Modifier and Type | Class and Description |
|---|---|
class |
SslConnection
A Connection that acts as an interceptor between an EndPoint providing SSL encrypted data
and another consumer of an EndPoint (typically an
Connection like HttpConnection) that
wants unencrypted data. |
| Modifier and Type | Method and Description |
|---|---|
Connection |
SslClientConnectionFactory.newConnection(EndPoint endPoint,
Map<String,Object> context) |
| Modifier and Type | Method and Description |
|---|---|
void |
SslConnection.DecryptedEndPoint.setConnection(Connection connection) |
Copyright © 1995-2015 Webtide. All Rights Reserved.