Package org.eclipse.jetty.io
Interface Connection.UpgradeTo
-
- All Known Implementing Classes:
AbstractWebSocketConnection
,HttpConnection
,SslConnection
,WebSocketClientConnection
,WebSocketServerConnection
- Enclosing interface:
- Connection
@Deprecated(since="2021-05-27") public static interface Connection.UpgradeTo
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Connection
implementations implement this interface when they can be upgraded to the protocol they speak (e.g. HTTP/2) from a different protocol (e.g. HTTP/1.1).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
onUpgradeTo(java.nio.ByteBuffer buffer)
Deprecated.Invoked during anupgrade
to receive a buffer containing bytes that have not been consumed by the upgrade-from connection, and that must be consumed by this connection.
-
-
-
Method Detail
-
onUpgradeTo
void onUpgradeTo(java.nio.ByteBuffer buffer)
Deprecated.Invoked during an
upgrade
to receive a buffer containing bytes that have not been consumed by the upgrade-from connection, and that must be consumed by this connection.- Parameters:
buffer
- a non-null buffer of unconsumed bytes received from the upgrade-from connection. The buffer does not belong to any pool and should be discarded after having consumed its bytes.
-
-