Home / Class/ ChannelStateVerifyHandler Class — netty Architecture

ChannelStateVerifyHandler Class — netty Architecture

Architecture documentation for the ChannelStateVerifyHandler class in QuicChannelConnectTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  320f65e4_fd89_3a1a_205a_b7d0cda58a9c["ChannelStateVerifyHandler"]
  adfc3cc1_280f_9a8f_79b5_d4330fd798bd["QuicChannelConnectTest.java"]
  320f65e4_fd89_3a1a_205a_b7d0cda58a9c -->|defined in| adfc3cc1_280f_9a8f_79b5_d4330fd798bd
  f4776383_2a2c_409c_80cc_6e7b63f7a62f["channelActive()"]
  320f65e4_fd89_3a1a_205a_b7d0cda58a9c -->|method| f4776383_2a2c_409c_80cc_6e7b63f7a62f
  cc149b90_bd79_f17d_aff3_0a0d28b5d3c7["channelInactive()"]
  320f65e4_fd89_3a1a_205a_b7d0cda58a9c -->|method| cc149b90_bd79_f17d_aff3_0a0d28b5d3c7

Relationship Graph

Source Code

codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java lines 1790–1802

    private static final class ChannelStateVerifyHandler extends QuicChannelValidationHandler {
        @Override
        public void channelActive(ChannelHandlerContext ctx) {
            ctx.fireChannelActive();
            fail();
        }

        @Override
        public void channelInactive(ChannelHandlerContext ctx) {
            ctx.fireChannelInactive();
            fail();
        }
    }

Frequently Asked Questions

What is the ChannelStateVerifyHandler class?
ChannelStateVerifyHandler is a class in the netty codebase, defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java.
Where is ChannelStateVerifyHandler defined?
ChannelStateVerifyHandler is defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java at line 1790.

Analyze Your Own Codebase

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

Try Supermodel Free