Home / Class/ NoopPendingBytesTracker Class — netty Architecture

NoopPendingBytesTracker Class — netty Architecture

Architecture documentation for the NoopPendingBytesTracker class in PendingBytesTracker.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b3afb811_8dd5_b15a_a17f_764c3704d092["NoopPendingBytesTracker"]
  7793aa4b_3621_52e5_beda_95a5097c5c3d["PendingBytesTracker.java"]
  b3afb811_8dd5_b15a_a17f_764c3704d092 -->|defined in| 7793aa4b_3621_52e5_beda_95a5097c5c3d
  9feb26b1_f4ee_e74d_5904_f50ebf925175["NoopPendingBytesTracker()"]
  b3afb811_8dd5_b15a_a17f_764c3704d092 -->|method| 9feb26b1_f4ee_e74d_5904_f50ebf925175
  9cbbe5c6_9c5b_f669_68b2_8f542360ac38["incrementPendingOutboundBytes()"]
  b3afb811_8dd5_b15a_a17f_764c3704d092 -->|method| 9cbbe5c6_9c5b_f669_68b2_8f542360ac38
  87d56b4d_9635_c7b7_8491_eccb5dba51ff["decrementPendingOutboundBytes()"]
  b3afb811_8dd5_b15a_a17f_764c3704d092 -->|method| 87d56b4d_9635_c7b7_8491_eccb5dba51ff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/PendingBytesTracker.java lines 88–103

    private static final class NoopPendingBytesTracker extends PendingBytesTracker {

        NoopPendingBytesTracker(MessageSizeEstimator.Handle estimatorHandle) {
            super(estimatorHandle);
        }

        @Override
        public void incrementPendingOutboundBytes(long bytes) {
            // Noop
        }

        @Override
        public void decrementPendingOutboundBytes(long bytes) {
            // Noop
        }
    }

Frequently Asked Questions

What is the NoopPendingBytesTracker class?
NoopPendingBytesTracker is a class in the netty codebase, defined in transport/src/main/java/io/netty/channel/PendingBytesTracker.java.
Where is NoopPendingBytesTracker defined?
NoopPendingBytesTracker is defined in transport/src/main/java/io/netty/channel/PendingBytesTracker.java at line 88.

Analyze Your Own Codebase

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

Try Supermodel Free