Home / Class/ ParentChangedEvent Class — netty Architecture

ParentChangedEvent Class — netty Architecture

Architecture documentation for the ParentChangedEvent class in WeightedFairQueueByteDistributor.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  7d79a339_dd79_ba04_6c23_65cbd66bfb60["ParentChangedEvent"]
  71cf42ec_8b96_e844_a28e_f91e8e96ff66["WeightedFairQueueByteDistributor.java"]
  7d79a339_dd79_ba04_6c23_65cbd66bfb60 -->|defined in| 71cf42ec_8b96_e844_a28e_f91e8e96ff66
  e0127c29_fcc1_4949_a31f_37cf0c8571cf["ParentChangedEvent()"]
  7d79a339_dd79_ba04_6c23_65cbd66bfb60 -->|method| e0127c29_fcc1_4949_a31f_37cf0c8571cf

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java lines 786–799

    private static final class ParentChangedEvent {
        final State state;
        final State oldParent;

        /**
         * Create a new instance.
         * @param state The state who has had a parent change.
         * @param oldParent The previous parent.
         */
        ParentChangedEvent(State state, State oldParent) {
            this.state = state;
            this.oldParent = oldParent;
        }
    }

Frequently Asked Questions

What is the ParentChangedEvent class?
ParentChangedEvent is a class in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java.
Where is ParentChangedEvent defined?
ParentChangedEvent is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/WeightedFairQueueByteDistributor.java at line 786.

Analyze Your Own Codebase

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

Try Supermodel Free