UserEventLogger Class — netty Architecture
Architecture documentation for the UserEventLogger class in Http2ServerInitializer.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a41e88ec_77c4_6154_cf4e_af43b106fa9d["UserEventLogger"] 16ecb9ab_e3c3_32b3_7b77_82cd5162d7b4["Http2ServerInitializer.java"] a41e88ec_77c4_6154_cf4e_af43b106fa9d -->|defined in| 16ecb9ab_e3c3_32b3_7b77_82cd5162d7b4 9b7c2643_ba52_27f0_4c6e_17449a4ef0e6["userEventTriggered()"] a41e88ec_77c4_6154_cf4e_af43b106fa9d -->|method| 9b7c2643_ba52_27f0_4c6e_17449a4ef0e6
Relationship Graph
Source Code
example/src/main/java/io/netty/example/http2/helloworld/server/Http2ServerInitializer.java lines 115–121
private static class UserEventLogger extends ChannelInboundHandlerAdapter {
@Override
public void userEventTriggered(ChannelHandlerContext ctx, Object evt) {
System.out.println("User Event Triggered: " + evt);
ctx.fireUserEventTriggered(evt);
}
}
Defined In
Source
Frequently Asked Questions
What is the UserEventLogger class?
UserEventLogger is a class in the netty codebase, defined in example/src/main/java/io/netty/example/http2/helloworld/server/Http2ServerInitializer.java.
Where is UserEventLogger defined?
UserEventLogger is defined in example/src/main/java/io/netty/example/http2/helloworld/server/Http2ServerInitializer.java at line 115.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free