Home / Function/ shouldLogChannelBind() — netty Function Reference

shouldLogChannelBind() — netty Function Reference

Architecture documentation for the shouldLogChannelBind() function in LoggingHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f8d0a9bb_45d5_3849_758d_e778020f6de6["shouldLogChannelBind()"]
  12b00413_e6e3_10b5_14c7_7f5ebb4a81a6["LoggingHandlerTest"]
  f8d0a9bb_45d5_3849_758d_e778020f6de6 -->|defined in| 12b00413_e6e3_10b5_14c7_7f5ebb4a81a6
  fed55159_8c51_7e31_be70_d41e8f1e239b["RegexLogMatcher()"]
  f8d0a9bb_45d5_3849_758d_e778020f6de6 -->|calls| fed55159_8c51_7e31_be70_d41e8f1e239b
  style f8d0a9bb_45d5_3849_758d_e778020f6de6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/logging/LoggingHandlerTest.java lines 177–182

    @Test
    public void shouldLogChannelBind() throws Exception {
        EmbeddedChannel channel = new EmbeddedChannel(new LoggingHandler(LogLevel.WARN));
        channel.bind(new InetSocketAddress(80));
        verify(appender).doAppend(argThat(new RegexLogMatcher(".+BIND: 0.0.0.0/0.0.0.0:80$")));
    }

Domain

Subdomains

Frequently Asked Questions

What does shouldLogChannelBind() do?
shouldLogChannelBind() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/logging/LoggingHandlerTest.java.
Where is shouldLogChannelBind() defined?
shouldLogChannelBind() is defined in handler/src/test/java/io/netty/handler/logging/LoggingHandlerTest.java at line 177.
What does shouldLogChannelBind() call?
shouldLogChannelBind() calls 1 function(s): RegexLogMatcher.

Analyze Your Own Codebase

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

Try Supermodel Free