Home / Class/ NoopHandler Class — netty Architecture

NoopHandler Class — netty Architecture

Architecture documentation for the NoopHandler class in Http2MultiplexClientUpgradeTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  d0c0c58d_5fc8_822b_eed1_deba5ca09aa4["NoopHandler"]
  69c421b0_c1bc_4be4_2821_dd870a92fcd7["Http2MultiplexClientUpgradeTest.java"]
  d0c0c58d_5fc8_822b_eed1_deba5ca09aa4 -->|defined in| 69c421b0_c1bc_4be4_2821_dd870a92fcd7
  f3897625_3e4d_ed89_cd87_ed2574a8ed3a["channelActive()"]
  d0c0c58d_5fc8_822b_eed1_deba5ca09aa4 -->|method| f3897625_3e4d_ed89_cd87_ed2574a8ed3a

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexClientUpgradeTest.java lines 32–38

    @ChannelHandler.Sharable
    static final class NoopHandler extends ChannelInboundHandlerAdapter {
        @Override
        public void channelActive(ChannelHandlerContext ctx) {
            ctx.channel().close();
        }
    }

Frequently Asked Questions

What is the NoopHandler class?
NoopHandler is a class in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexClientUpgradeTest.java.
Where is NoopHandler defined?
NoopHandler is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexClientUpgradeTest.java at line 32.

Analyze Your Own Codebase

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

Try Supermodel Free