onUserEventTriggered() — netty Function Reference
Architecture documentation for the onUserEventTriggered() function in Http2MultiplexCodec.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 06d52adb_88fb_f9d9_8f26_0a9c47ec36ec["onUserEventTriggered()"] a7ac469b_ce05_746a_3b73_34450541872b["Http2MultiplexCodec"] 06d52adb_88fb_f9d9_8f26_0a9c47ec36ec -->|defined in| a7ac469b_ce05_746a_3b73_34450541872b style 06d52adb_88fb_f9d9_8f26_0a9c47ec36ec fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java lines 291–301
@Override
final void onUserEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
if (evt == ChannelInputShutdownReadComplete.INSTANCE) {
forEachActiveStream(CHANNEL_INPUT_SHUTDOWN_READ_COMPLETE_VISITOR);
} else if (evt == ChannelOutputShutdownEvent.INSTANCE) {
forEachActiveStream(CHANNEL_OUTPUT_SHUTDOWN_EVENT_VISITOR);
} else if (evt == SslCloseCompletionEvent.SUCCESS) {
forEachActiveStream(SSL_CLOSE_COMPLETION_EVENT_VISITOR);
}
super.onUserEventTriggered(ctx, evt);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does onUserEventTriggered() do?
onUserEventTriggered() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java.
Where is onUserEventTriggered() defined?
onUserEventTriggered() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2MultiplexCodec.java at line 291.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free