Class ClientQuicConnection
- All Implemented Interfaces:
Closeable,AutoCloseable,Connection
The client specific implementation of QuicConnection.
For each ClientConnector.connect(SocketAddress, Map) operation,
a new DatagramChannelEndPoint is created with an associated
ClientQuicConnection.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.Connection
Connection.Listener, Connection.UpgradeFrom, Connection.UpgradeTo -
Constructor Summary
ConstructorsConstructorDescriptionClientQuicConnection(ClientConnector connector, EndPoint endPoint, Map<String, Object> context) -
Method Summary
Modifier and TypeMethodDescriptionprotected QuicSessioncreateSession(SocketAddress remoteAddress, ByteBuffer cipherBuffer) protected voidvoidCallback method invoked when the endpoint is ready to be read.booleanCallback method invoked upon an idle timeout event.voidonOpen()Callback method invoked when this connection is opened.voidoutwardClose(QuicSession session, Throwable failure) Methods inherited from class org.eclipse.jetty.quic.common.QuicConnection
addEventListener, close, fillInterested, getByteBufferPool, getEndPoint, getOutputBufferSize, getQuicSessions, getScheduler, isUseInputDirectByteBuffers, isUseOutputDirectByteBuffers, onClose, removeEventListener, setOutputBufferSize, setUseInputDirectByteBuffers, setUseOutputDirectByteBuffers, writeMethods inherited from class org.eclipse.jetty.io.AbstractConnection
failedCallback, getBytesIn, getBytesOut, getCreatedTimeStamp, getExecutor, getInputBufferSize, getMessagesIn, getMessagesOut, isFillInterested, onFillInterestedFailed, onReadTimeout, setInputBufferSize, toConnectionString, toString, tryFillInterested
-
Constructor Details
-
ClientQuicConnection
public ClientQuicConnection(ClientConnector connector, EndPoint endPoint, Map<String, Object> context)
-
-
Method Details
-
onOpen
public void onOpen()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 classQuicConnection
-
onFillable
public void onFillable()Description copied from class:AbstractConnectionCallback method invoked when the endpoint is ready to be read.
- Overrides:
onFillablein classQuicConnection- See Also:
-
createSession
protected QuicSession createSession(SocketAddress remoteAddress, ByteBuffer cipherBuffer) throws IOException - Specified by:
createSessionin classQuicConnection- Throws:
IOException
-
onFailure
- Overrides:
onFailurein classQuicConnection
-
onIdleExpired
public boolean onIdleExpired()Description copied from interface:ConnectionCallback method invoked upon an idle timeout event.
Implementations of this method may return true to indicate that the idle timeout handling should proceed normally, typically failing the EndPoint and causing it to be closed.
When false is returned, the handling of the idle timeout event is halted immediately and the EndPoint left in the state it was before the idle timeout event.
- Specified by:
onIdleExpiredin interfaceConnection- Specified by:
onIdleExpiredin classQuicConnection- Returns:
- true to let the EndPoint handle the idle timeout, false to tell the EndPoint to halt the handling of the idle timeout.
-
outwardClose
- Overrides:
outwardClosein classQuicConnection
-