Home / Function/ channelRead0() — netty Function Reference

channelRead0() — netty Function Reference

Architecture documentation for the channelRead0() function in SocketStartTlsTest.java from the netty codebase.

Function java Buffer Search calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  09d53f4b_3bda_cc79_0ab9_9fcc6bc8ca79["channelRead0()"]
  a505be0e_4066_b29c_d557_d32c407f4d58["StartTlsServerHandler"]
  09d53f4b_3bda_cc79_0ab9_9fcc6bc8ca79 -->|defined in| a505be0e_4066_b29c_d557_d32c407f4d58
  be0658a8_5549_2bf0_6a1a_c07b18c9618d["channelRead0()"]
  be0658a8_5549_2bf0_6a1a_c07b18c9618d -->|calls| 09d53f4b_3bda_cc79_0ab9_9fcc6bc8ca79
  be0658a8_5549_2bf0_6a1a_c07b18c9618d["channelRead0()"]
  09d53f4b_3bda_cc79_0ab9_9fcc6bc8ca79 -->|calls| be0658a8_5549_2bf0_6a1a_c07b18c9618d
  style 09d53f4b_3bda_cc79_0ab9_9fcc6bc8ca79 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketStartTlsTest.java lines 317–327

        @Override
        public void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception {
            if ("StartTlsRequest".equals(msg)) {
                ctx.pipeline().addAfter("logger", "ssl", sslHandler);
                ctx.writeAndFlush("StartTlsResponse\n");
                return;
            }

            assertEquals("EncryptedRequest", msg);
            ctx.writeAndFlush("EncryptedResponse\n");
        }

Domain

Subdomains

Called By

Frequently Asked Questions

What does channelRead0() do?
channelRead0() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketStartTlsTest.java.
Where is channelRead0() defined?
channelRead0() is defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketStartTlsTest.java at line 317.
What does channelRead0() call?
channelRead0() calls 1 function(s): channelRead0.
What calls channelRead0()?
channelRead0() is called by 1 function(s): channelRead0.

Analyze Your Own Codebase

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

Try Supermodel Free