Class ProtocolSession

All Implemented Interfaces:
Container, Destroyable, Dumpable, Dumpable.DumpableContainer, LifeCycle
Direct Known Subclasses:
ClientProtocolSession, ServerProtocolSession

public abstract class ProtocolSession extends ContainerLifeCycle

Represents an established stateful connection with a remote peer for a specific QUIC connection ID.

Differently from QuicSession, which is created during the initial phases of connection establishment and it is not specific to a protocol, ProtocolSession is created only when the connection is established, and it is protocol specific, depending on the protocol negotiated during the connection establishment.

See Also:
  • Constructor Details Link icon

    • ProtocolSession Link icon

      public ProtocolSession(QuicSession session)
  • Method Details Link icon

    • getQuicSession Link icon

      public QuicSession getQuicSession()
    • getIdleTimeout Link icon

      public long getIdleTimeout()
    • getMaxLocalStreams Link icon

      public int getMaxLocalStreams()
    • getProducerTask Link icon

      public abstract Runnable getProducerTask()
    • produce Link icon

      protected void produce()
    • offer Link icon

      public void offer(Runnable task, boolean dispatch)
    • getStreamEndPoint Link icon

      public QuicStreamEndPoint getStreamEndPoint(long streamId)
    • getOrCreateStreamEndPoint Link icon

      public QuicStreamEndPoint getOrCreateStreamEndPoint(long streamId, Consumer<QuicStreamEndPoint> consumer)
    • processWritableStreams Link icon

      protected void processWritableStreams()
    • onWritable Link icon

      protected void onWritable(long writableStreamId)
    • processReadableStreams Link icon

      protected boolean processReadableStreams()
    • onReadable Link icon

      protected abstract boolean onReadable(long readableStreamId)
    • openProtocolEndPoint Link icon

      public void openProtocolEndPoint(QuicStreamEndPoint endPoint)
    • onIdleTimeout Link icon

      protected boolean onIdleTimeout()
    • onFailure Link icon

      protected void onFailure(long error, String reason, Throwable failure)
    • inwardClose Link icon

      public void inwardClose(long error, String reason)
    • outwardClose Link icon

      public void outwardClose(long error, String reason)
    • shutdown Link icon

      public CompletableFuture<Void> shutdown()
    • onClose Link icon

      protected abstract void onClose(long error, String reason)
    • toString Link icon

      public String toString()
      Overrides:
      toString in class AbstractLifeCycle