shouldLogChannelClose() — netty Function Reference
Architecture documentation for the shouldLogChannelClose() function in LoggingHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3d96c6e9_b671_dd61_9691_750def065739["shouldLogChannelClose()"] 12b00413_e6e3_10b5_14c7_7f5ebb4a81a6["LoggingHandlerTest"] 3d96c6e9_b671_dd61_9691_750def065739 -->|defined in| 12b00413_e6e3_10b5_14c7_7f5ebb4a81a6 fed55159_8c51_7e31_be70_d41e8f1e239b["RegexLogMatcher()"] 3d96c6e9_b671_dd61_9691_750def065739 -->|calls| fed55159_8c51_7e31_be70_d41e8f1e239b style 3d96c6e9_b671_dd61_9691_750def065739 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/logging/LoggingHandlerTest.java lines 140–145
@Test
public void shouldLogChannelClose() throws Exception {
EmbeddedChannel channel = new EmbeddedChannel(new LoggingHandler(LogLevel.WARN));
channel.close().await();
verify(appender).doAppend(argThat(new RegexLogMatcher(".+CLOSE$")));
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does shouldLogChannelClose() do?
shouldLogChannelClose() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/logging/LoggingHandlerTest.java.
Where is shouldLogChannelClose() defined?
shouldLogChannelClose() is defined in handler/src/test/java/io/netty/handler/logging/LoggingHandlerTest.java at line 140.
What does shouldLogChannelClose() call?
shouldLogChannelClose() 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