Package org.eclipse.jetty.quic.server
Class ServerQuicConnection
java.lang.Object
org.eclipse.jetty.io.AbstractConnection
org.eclipse.jetty.quic.common.QuicConnection
org.eclipse.jetty.quic.server.ServerQuicConnection
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Connection
The server specific implementation of QuicConnection
.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.Connection
Connection.Listener, Connection.UpgradeFrom, Connection.UpgradeTo
-
Constructor Summary
ModifierConstructorDescriptionprotected
ServerQuicConnection
(QuicServerConnector connector, EndPoint endPoint) -
Method Summary
Modifier and TypeMethodDescriptionprotected QuicSession
createSession
(SocketAddress remoteAddress, ByteBuffer cipherBuffer) boolean
Callback method invoked upon an idle timeout event.void
onOpen()
Callback method invoked when this connection is opened.void
outwardClose
(QuicSession session, Throwable failure) void
schedule
(ServerQuicSession session) Methods inherited from class org.eclipse.jetty.quic.common.QuicConnection
addEventListener, close, fillInterested, getByteBufferPool, getEndPoint, getOutputBufferSize, getQuicSessions, getScheduler, isUseInputDirectByteBuffers, isUseOutputDirectByteBuffers, onClose, onFailure, onFillable, removeEventListener, setOutputBufferSize, setUseInputDirectByteBuffers, setUseOutputDirectByteBuffers, write
Methods 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
-
ServerQuicConnection
-
-
Method Details
-
onOpen
public void onOpen()Description copied from interface:Connection
Callback method invoked when this connection is opened.
Creators of the connection implementation are responsible for calling this method.
- Specified by:
onOpen
in interfaceConnection
- Overrides:
onOpen
in classQuicConnection
-
createSession
protected QuicSession createSession(SocketAddress remoteAddress, ByteBuffer cipherBuffer) throws IOException - Specified by:
createSession
in classQuicConnection
- Throws:
IOException
-
schedule
-
onIdleExpired
public boolean onIdleExpired()Description copied from interface:Connection
Callback 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:
onIdleExpired
in interfaceConnection
- Specified by:
onIdleExpired
in 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:
outwardClose
in classQuicConnection
-