Home / Function/ notifyParentChanged() — netty Function Reference

notifyParentChanged() — netty Function Reference

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

Function java Buffer Allocators calls 2 called by 3

Entity Profile

Dependency Diagram

graph TD
  25f3d9c7_29c4_05d1_8c21_d15e89a37789["notifyParentChanged()"]
  f6394c11_feeb_5e3e_8717_b7d2d36bbf34["WeightedFairQueueByteDistributor"]
  25f3d9c7_29c4_05d1_8c21_d15e89a37789 -->|defined in| f6394c11_feeb_5e3e_8717_b7d2d36bbf34
  0f84cad1_72bf_48c4_a975_f58d297dd3c2["WeightedFairQueueByteDistributor()"]
  0f84cad1_72bf_48c4_a975_f58d297dd3c2 -->|calls| 25f3d9c7_29c4_05d1_8c21_d15e89a37789
  ebb4ce48_a19b_1763_6677_772bd73eafff["updateDependencyTree()"]
  ebb4ce48_a19b_1763_6677_772bd73eafff -->|calls| 25f3d9c7_29c4_05d1_8c21_d15e89a37789
  a7426564_13ec_4caa_ec35_83d94c9ad9d0["removeChild()"]
  a7426564_13ec_4caa_ec35_83d94c9ad9d0 -->|calls| 25f3d9c7_29c4_05d1_8c21_d15e89a37789
  4d34df41_0061_89d6_3f84_4a8afe97e5f2["offerAndInitializePseudoTime()"]
  25f3d9c7_29c4_05d1_8c21_d15e89a37789 -->|calls| 4d34df41_0061_89d6_3f84_4a8afe97e5f2
  4ff2400b_5ed4_4092_bc1a_dfee981e6cf7["activeCountChangeForTree()"]
  25f3d9c7_29c4_05d1_8c21_d15e89a37789 -->|calls| 4ff2400b_5ed4_4092_bc1a_dfee981e6cf7
  style 25f3d9c7_29c4_05d1_8c21_d15e89a37789 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java lines 373–382

    void notifyParentChanged(List<ParentChangedEvent> events) {
        for (int i = 0; i < events.size(); ++i) {
            ParentChangedEvent event = events.get(i);
            stateOnlyRemovalQueue.priorityChanged(event.state);
            if (event.state.parent != null && event.state.activeCountForTree != 0) {
                event.state.parent.offerAndInitializePseudoTime(event.state);
                event.state.parent.activeCountChangeForTree(event.state.activeCountForTree);
            }
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does notifyParentChanged() do?
notifyParentChanged() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java.
Where is notifyParentChanged() defined?
notifyParentChanged() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java at line 373.
What does notifyParentChanged() call?
notifyParentChanged() calls 2 function(s): activeCountChangeForTree, offerAndInitializePseudoTime.
What calls notifyParentChanged()?
notifyParentChanged() is called by 3 function(s): WeightedFairQueueByteDistributor, removeChild, updateDependencyTree.

Analyze Your Own Codebase

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

Try Supermodel Free