Home / Function/ String() — netty Function Reference

String() — netty Function Reference

Architecture documentation for the String() function in QuicheQuicConnectionStats.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  85c28545_3d27_3e86_a013_5a8e3e859261["String()"]
  b1530bca_ed12_23f7_9028_38e555802dbf["QuicheQuicConnectionStats"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|defined in| b1530bca_ed12_23f7_9028_38e555802dbf
  d3bfbcd2_35f8_3fe8_4c31_9b86822c333f["recv()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| d3bfbcd2_35f8_3fe8_4c31_9b86822c333f
  4a536182_c11a_a269_e170_c0454828c067["sent()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| 4a536182_c11a_a269_e170_c0454828c067
  e00e9dc9_0aa4_f67a_8d43_cffd1a5f73a8["lost()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| e00e9dc9_0aa4_f67a_8d43_cffd1a5f73a8
  00b81dba_a4db_2a0d_a9b8_055713a05e05["retrans()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| 00b81dba_a4db_2a0d_a9b8_055713a05e05
  b18ef01e_edab_3547_ed19_d54ea79306dc["sentBytes()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| b18ef01e_edab_3547_ed19_d54ea79306dc
  57fabe23_4ccf_67f5_f3ea_dfa09b913ce9["recvBytes()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| 57fabe23_4ccf_67f5_f3ea_dfa09b913ce9
  7bb87840_3069_f814_024c_d10d9ef93e88["lostBytes()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| 7bb87840_3069_f814_024c_d10d9ef93e88
  00972555_251a_d615_07ea_89fc2ddd46f1["streamRetransBytes()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| 00972555_251a_d615_07ea_89fc2ddd46f1
  40b3d239_558f_02d2_2557_413b85f40f40["pathsCount()"]
  85c28545_3d27_3e86_a013_5a8e3e859261 -->|calls| 40b3d239_558f_02d2_2557_413b85f40f40
  style 85c28545_3d27_3e86_a013_5a8e3e859261 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicConnectionStats.java lines 76–89

    @Override
    public String toString() {
        return StringUtil.simpleClassName(this) + "[" +
                "recv=" + recv() +
                ", sent=" + sent() +
                ", lost=" + lost() +
                ", retrans=" + retrans() +
                ", sentBytes=" + sentBytes() +
                ", recvBytes=" + recvBytes() +
                ", lostBytes=" + lostBytes() +
                ", streamRetransBytes=" + streamRetransBytes() +
                ", pathsCount=" + pathsCount() +
                "]";
    }

Domain

Subdomains

Frequently Asked Questions

What does String() do?
String() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicConnectionStats.java.
Where is String() defined?
String() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicConnectionStats.java at line 76.
What does String() call?
String() calls 9 function(s): lost, lostBytes, pathsCount, recv, recvBytes, retrans, sent, sentBytes, and 1 more.

Analyze Your Own Codebase

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

Try Supermodel Free