Home / Function/ Http3FrameCodec() — netty Function Reference

Http3FrameCodec() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  d08e22bb_468c_9263_1648_2ad94efd5628["Http3FrameCodec()"]
  57499e74_1040_f300_12bb_215179e108be["Http3FrameCodec"]
  d08e22bb_468c_9263_1648_2ad94efd5628 -->|defined in| 57499e74_1040_f300_12bb_215179e108be
  c4e8d7c5_9603_b528_219d_a82f333d9703["Http3FrameCodecFactory()"]
  c4e8d7c5_9603_b528_219d_a82f333d9703 -->|calls| d08e22bb_468c_9263_1648_2ad94efd5628
  style d08e22bb_468c_9263_1648_2ad94efd5628 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/Http3FrameCodec.java lines 85–96

    Http3FrameCodec(Http3FrameTypeValidator validator, QpackDecoder qpackDecoder,
                    long maxHeaderListSize, QpackEncoder qpackEncoder, Http3RequestStreamCodecState encodeState,
                    Http3RequestStreamCodecState decodeState,
                    Http3Settings.NonStandardHttp3SettingsValidator nonStandardSettingsValidator) {
        this.validator = checkNotNull(validator, "validator");
        this.qpackDecoder = checkNotNull(qpackDecoder, "qpackDecoder");
        this.maxHeaderListSize = checkPositive(maxHeaderListSize, "maxHeaderListSize");
        this.qpackEncoder = checkNotNull(qpackEncoder, "qpackEncoder");
        this.encodeState = checkNotNull(encodeState, "encodeState");
        this.decodeState = checkNotNull(decodeState, "decodeState");
        this.nonStandardSettingsValidator = nonStandardSettingsValidator;
    }

Domain

Subdomains

Frequently Asked Questions

What does Http3FrameCodec() do?
Http3FrameCodec() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3FrameCodec.java.
Where is Http3FrameCodec() defined?
Http3FrameCodec() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3FrameCodec.java at line 85.
What calls Http3FrameCodec()?
Http3FrameCodec() is called by 1 function(s): Http3FrameCodecFactory.

Analyze Your Own Codebase

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

Try Supermodel Free