Home / Function/ isDescendantOf() — netty Function Reference

isDescendantOf() — netty Function Reference

Architecture documentation for the isDescendantOf() function in WeightedFairQueueByteDistributor.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  e7564f5e_a83e_9a00_89a6_e897079b3574["isDescendantOf()"]
  7bb99c84_0884_e59e_f284_a7da408d2406["State"]
  e7564f5e_a83e_9a00_89a6_e897079b3574 -->|defined in| 7bb99c84_0884_e59e_f284_a7da408d2406
  ebb4ce48_a19b_1763_6677_772bd73eafff["updateDependencyTree()"]
  ebb4ce48_a19b_1763_6677_772bd73eafff -->|calls| e7564f5e_a83e_9a00_89a6_e897079b3574
  style e7564f5e_a83e_9a00_89a6_e897079b3574 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java lines 483–492

        boolean isDescendantOf(State state) {
            State next = parent;
            while (next != null) {
                if (next == state) {
                    return true;
                }
                next = next.parent;
            }
            return false;
        }

Domain

Subdomains

Frequently Asked Questions

What does isDescendantOf() do?
isDescendantOf() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java.
Where is isDescendantOf() defined?
isDescendantOf() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java at line 483.
What calls isDescendantOf()?
isDescendantOf() is called by 1 function(s): updateDependencyTree.

Analyze Your Own Codebase

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

Try Supermodel Free