Home / Type/ QuicConnectionStats Type — netty Architecture

QuicConnectionStats Type — netty Architecture

Architecture documentation for the QuicConnectionStats type/interface in QuicConnectionStats.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  edfb96d0_da50_4aa9_de02_4bf76c91ebf0["QuicConnectionStats"]
  7fb21120_3f3c_07b1_adf5_687378ed4f4c["QuicConnectionStats.java"]
  edfb96d0_da50_4aa9_de02_4bf76c91ebf0 -->|defined in| 7fb21120_3f3c_07b1_adf5_687378ed4f4c
  style edfb96d0_da50_4aa9_de02_4bf76c91ebf0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicConnectionStats.java lines 22–67

public interface QuicConnectionStats {
    /**
     * @return The number of QUIC packets received on the connection.
     */
    long recv();

    /**
     * @return The number of QUIC packets sent on this connection.
     */
    long sent();

    /**
     * @return The number of QUIC packets that were lost.
     */
    long lost();

    /**
     * @return The number of sent QUIC packets with retransmitted data.
     */
    long retrans();

    /**
     * @return The number of sent bytes.
     */
    long sentBytes();

    /**
     * @return The number of received bytes.
     */
    long recvBytes();

    /**
     * @return  The number of bytes lost.
     */
    long lostBytes();

    /**
     * @return  The number of stream bytes retransmitted.
     */
    long streamRetransBytes();

    /**
     * @return   The number of known paths for the connection.
     */
    long pathsCount();
}

Frequently Asked Questions

What is the QuicConnectionStats type?
QuicConnectionStats is a type/interface in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicConnectionStats.java.
Where is QuicConnectionStats defined?
QuicConnectionStats is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicConnectionStats.java at line 22.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free