Home / Function/ connectionError() — netty Function Reference

connectionError() — netty Function Reference

Architecture documentation for the connectionError() function in Http3CodecUtils.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  8d1cb03b_de14_d2f0_ab35_48ea3942bd41["connectionError()"]
  2d36ae1b_0899_d9aa_9040_95c1421cfa14["Http3CodecUtils"]
  8d1cb03b_de14_d2f0_ab35_48ea3942bd41 -->|defined in| 2d36ae1b_0899_d9aa_9040_95c1421cfa14
  8dff0eed_dbab_de6c_266d_5cdffb7e0593["criticalStreamClosed()"]
  8dff0eed_dbab_de6c_266d_5cdffb7e0593 -->|calls| 8d1cb03b_de14_d2f0_ab35_48ea3942bd41
  76c6ee33_ce7e_aa19_ec65_6ebcff89f15b["Http3ConnectionHandler()"]
  76c6ee33_ce7e_aa19_ec65_6ebcff89f15b -->|calls| 8d1cb03b_de14_d2f0_ab35_48ea3942bd41
  style 8d1cb03b_de14_d2f0_ab35_48ea3942bd41 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/Http3CodecUtils.java lines 223–228

    static void connectionError(ChannelHandlerContext ctx, Http3Exception exception, boolean fireException) {
        if (fireException) {
            ctx.fireExceptionCaught(exception);
        }
        connectionError(ctx.channel(), exception.errorCode(), exception.getMessage());
    }

Domain

Subdomains

Frequently Asked Questions

What does connectionError() do?
connectionError() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3CodecUtils.java.
Where is connectionError() defined?
connectionError() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3CodecUtils.java at line 223.
What calls connectionError()?
connectionError() is called by 2 function(s): Http3ConnectionHandler, criticalStreamClosed.

Analyze Your Own Codebase

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

Try Supermodel Free