Home / Function/ collectPathStats() — netty Function Reference

collectPathStats() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  6347f956_0ca3_882d_4182_3891c0d63f82["collectPathStats()"]
  3c534d05_bb5b_c991_5e03_7ec94e739cf7["QuicheQuicChannel"]
  6347f956_0ca3_882d_4182_3891c0d63f82 -->|defined in| 3c534d05_bb5b_c991_5e03_7ec94e739cf7
  59fccddd_45a2_4f60_b419_034e706a53e7["collectPathStats0()"]
  6347f956_0ca3_882d_4182_3891c0d63f82 -->|calls| 59fccddd_45a2_4f60_b419_034e706a53e7
  style 6347f956_0ca3_882d_4182_3891c0d63f82 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java lines 2100–2108

    @Override
    public Future<QuicConnectionPathStats> collectPathStats(int pathIdx, Promise<QuicConnectionPathStats> promise) {
        if (eventLoop().inEventLoop()) {
            collectPathStats0(pathIdx, promise);
        } else {
            eventLoop().execute(() -> collectPathStats0(pathIdx, promise));
        }
        return promise;
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free