Home / Function/ userEventTriggered() — netty Function Reference

userEventTriggered() — netty Function Reference

Architecture documentation for the userEventTriggered() function in Http3RequestStreamInboundHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  553f75f2_92cd_0274_1973_c336944d0f16["userEventTriggered()"]
  8f22a8be_cef4_bc4e_a01f_25a64288a1f5["Http3RequestStreamInboundHandler"]
  553f75f2_92cd_0274_1973_c336944d0f16 -->|defined in| 8f22a8be_cef4_bc4e_a01f_25a64288a1f5
  1d3e765a_5d7a_0e26_be30_2dd082a797ac["channelInputClosed()"]
  553f75f2_92cd_0274_1973_c336944d0f16 -->|calls| 1d3e765a_5d7a_0e26_be30_2dd082a797ac
  style 553f75f2_92cd_0274_1973_c336944d0f16 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/Http3RequestStreamInboundHandler.java lines 48–54

    @Override
    public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
        if (evt == ChannelInputShutdownEvent.INSTANCE) {
            channelInputClosed(ctx);
        }
        ctx.fireUserEventTriggered(evt);
    }

Domain

Subdomains

Frequently Asked Questions

What does userEventTriggered() do?
userEventTriggered() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3RequestStreamInboundHandler.java.
Where is userEventTriggered() defined?
userEventTriggered() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3RequestStreamInboundHandler.java at line 48.
What does userEventTriggered() call?
userEventTriggered() calls 1 function(s): channelInputClosed.

Analyze Your Own Codebase

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

Try Supermodel Free