Home / Function/ Http2FrameCodec() — netty Function Reference

Http2FrameCodec() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  edf98085_6a6f_df38_d6ce_66cf410f3a3e["Http2FrameCodec()"]
  ba77a225_4637_fe77_ee1f_54a9774ca7f8["Http2FrameCodec"]
  edf98085_6a6f_df38_d6ce_66cf410f3a3e -->|defined in| ba77a225_4637_fe77_ee1f_54a9774ca7f8
  style edf98085_6a6f_df38_d6ce_66cf410f3a3e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java lines 167–177

    protected Http2FrameCodec(Http2ConnectionEncoder encoder, Http2ConnectionDecoder decoder,
                              Http2Settings initialSettings, boolean decoupleCloseAndGoAway, boolean flushPreface) {
        super(decoder, encoder, initialSettings, decoupleCloseAndGoAway, flushPreface);

        decoder.frameListener(new FrameListener());
        connection().addListener(new ConnectionListener());
        connection().remote().flowController().listener(new Http2RemoteFlowControllerListener());
        streamKey = connection().newKey();
        upgradeKey = connection().newKey();
        initialFlowControlWindowSize = initialSettings.initialWindowSize();
    }

Domain

Subdomains

Frequently Asked Questions

What does Http2FrameCodec() do?
Http2FrameCodec() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java.
Where is Http2FrameCodec() defined?
Http2FrameCodec() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java at line 167.

Analyze Your Own Codebase

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

Try Supermodel Free