Home / Function/ collectStats() — netty Function Reference

collectStats() — netty Function Reference

Architecture documentation for the collectStats() function in QuicheQuicChannel.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  d7a67852_f19d_1426_deef_dc06e5edfd5b["collectStats()"]
  3c534d05_bb5b_c991_5e03_7ec94e739cf7["QuicheQuicChannel"]
  d7a67852_f19d_1426_deef_dc06e5edfd5b -->|defined in| 3c534d05_bb5b_c991_5e03_7ec94e739cf7
  646632d7_c969_ccd0_3a34_06087c4828ed["collectStats0()"]
  d7a67852_f19d_1426_deef_dc06e5edfd5b -->|calls| 646632d7_c969_ccd0_3a34_06087c4828ed
  style d7a67852_f19d_1426_deef_dc06e5edfd5b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java lines 2066–2074

    @Override
    public Future<QuicConnectionStats> collectStats(Promise<QuicConnectionStats> promise) {
        if (eventLoop().inEventLoop()) {
            collectStats0(promise);
        } else {
            eventLoop().execute(() -> collectStats0(promise));
        }
        return promise;
    }

Domain

Subdomains

Frequently Asked Questions

What does collectStats() do?
collectStats() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java.
Where is collectStats() defined?
collectStats() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java at line 2066.
What does collectStats() call?
collectStats() calls 1 function(s): collectStats0.

Analyze Your Own Codebase

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

Try Supermodel Free