Package org.eclipse.jetty.io
Class NegotiatingClientConnection
- java.lang.Object
 - 
- org.eclipse.jetty.io.AbstractConnection
 - 
- org.eclipse.jetty.io.NegotiatingClientConnection
 
 
 
- 
- All Implemented Interfaces:
 java.io.Closeable,java.lang.AutoCloseable,Connection
@Deprecated(since="2021-05-27") public abstract class NegotiatingClientConnection extends AbstractConnection
Deprecated. 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.Connection
Connection.Listener, Connection.UpgradeFrom, Connection.UpgradeTo 
 - 
 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Deprecated.Performs a logical close of this connection.javax.net.ssl.SSLEnginegetSSLEngine()Deprecated.voidonFillable()Deprecated.Callback method invoked when the endpoint is ready to be read.voidonOpen()Deprecated.Callback method invoked when this connection is opened.- 
Methods inherited from class org.eclipse.jetty.io.AbstractConnection
addListener, fillInterested, getBytesIn, getBytesOut, getCreatedTimeStamp, getEndPoint, getInputBufferSize, getMessagesIn, getMessagesOut, isFillInterested, onClose, onIdleExpired, removeListener, setInputBufferSize, toConnectionString, toString, tryFillInterested, tryFillInterested 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getSSLEngine
public javax.net.ssl.SSLEngine getSSLEngine()
Deprecated. 
- 
onOpen
public void onOpen()
Deprecated.Description copied from interface:ConnectionCallback method invoked when this connection is opened.
Creators of the connection implementation are responsible for calling this method.
- Specified by:
 onOpenin interfaceConnection- Overrides:
 onOpenin classAbstractConnection
 
- 
onFillable
public void onFillable()
Deprecated.Description copied from class:AbstractConnectionCallback method invoked when the endpoint is ready to be read.
- Specified by:
 onFillablein classAbstractConnection- See Also:
 AbstractConnection.fillInterested()
 
- 
close
public void close()
Deprecated.Description copied from interface:ConnectionPerforms a logical close of this connection.
For simple connections, this may just mean to delegate the close to the associated
EndPointbut, for example, SSL connections should write the SSL close message before closing the associatedEndPoint.- Specified by:
 closein interfacejava.lang.AutoCloseable- Specified by:
 closein interfacejava.io.Closeable- Specified by:
 closein interfaceConnection- Overrides:
 closein classAbstractConnection
 
 - 
 
 -