Home / Class/ Http3ServerConnectionHandlerTest Class — netty Architecture

Http3ServerConnectionHandlerTest Class — netty Architecture

Architecture documentation for the Http3ServerConnectionHandlerTest class in Http3ServerConnectionHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fb3157ec_72e1_3c78_e7f7_f153dc941b81["Http3ServerConnectionHandlerTest"]
  563c3f88_d95a_c402_76dc_c1ac3f41180c["Http3ServerConnectionHandlerTest.java"]
  fb3157ec_72e1_3c78_e7f7_f153dc941b81 -->|defined in| 563c3f88_d95a_c402_76dc_c1ac3f41180c
  74643980_1b39_b097_20cd_01d7bb4bb0e9["Http3ServerConnectionHandlerTest()"]
  fb3157ec_72e1_3c78_e7f7_f153dc941b81 -->|method| 74643980_1b39_b097_20cd_01d7bb4bb0e9
  5b82e355_f585_e934_c481_4b179a619282["Http3ConnectionHandler()"]
  fb3157ec_72e1_3c78_e7f7_f153dc941b81 -->|method| 5b82e355_f585_e934_c481_4b179a619282
  fcbcd3f8_e433_c722_e826_f11cb7a8cc93["assertBidirectionalStreamHandled()"]
  fb3157ec_72e1_3c78_e7f7_f153dc941b81 -->|method| fcbcd3f8_e433_c722_e826_f11cb7a8cc93

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ServerConnectionHandlerTest.java lines 24–45

public class Http3ServerConnectionHandlerTest extends AbtractHttp3ConnectionHandlerTest {
    private static final ChannelHandler REQUEST_HANDLER = new ChannelInboundHandlerAdapter() {
        @Override
        public boolean isSharable() {
            return true;
        }
    };

    public Http3ServerConnectionHandlerTest() {
        super(true);
    }

    @Override
    protected Http3ConnectionHandler newConnectionHandler() {
        return new Http3ServerConnectionHandler(REQUEST_HANDLER);
    }

    @Override
    protected void assertBidirectionalStreamHandled(EmbeddedQuicChannel channel, QuicStreamChannel streamChannel) {
        assertNotNull(streamChannel.pipeline().context(REQUEST_HANDLER));
    }
}

Frequently Asked Questions

What is the Http3ServerConnectionHandlerTest class?
Http3ServerConnectionHandlerTest is a class in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ServerConnectionHandlerTest.java.
Where is Http3ServerConnectionHandlerTest defined?
Http3ServerConnectionHandlerTest is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3ServerConnectionHandlerTest.java at line 24.

Analyze Your Own Codebase

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

Try Supermodel Free