Home / Function/ HeadersFrame() — netty Function Reference

HeadersFrame() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  63463661_65f1_23fa_7a59_7b7802e14e67["HeadersFrame()"]
  e2014f72_141f_f7a7_05aa_d63a3440444e["HeadersFrame"]
  63463661_65f1_23fa_7a59_7b7802e14e67 -->|defined in| e2014f72_141f_f7a7_05aa_d63a3440444e
  a895a0e3_4e36_d3ff_a06d_b6dd4c4f3bce["ChannelFuture()"]
  a895a0e3_4e36_d3ff_a06d_b6dd4c4f3bce -->|calls| 63463661_65f1_23fa_7a59_7b7802e14e67
  style 63463661_65f1_23fa_7a59_7b7802e14e67 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/StreamBufferingEncoder.java lines 363–373

        HeadersFrame(Http2Headers headers, boolean hasPriority, int streamDependency, short weight, boolean exclusive,
                     int padding, boolean endOfStream, ChannelPromise promise) {
            super(promise);
            this.headers = headers;
            this.hasPriority = hasPriority;
            this.streamDependency = streamDependency;
            this.weight = weight;
            this.exclusive = exclusive;
            this.padding = padding;
            this.endOfStream = endOfStream;
        }

Domain

Subdomains

Called By

Frequently Asked Questions

What does HeadersFrame() do?
HeadersFrame() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/StreamBufferingEncoder.java.
Where is HeadersFrame() defined?
HeadersFrame() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/StreamBufferingEncoder.java at line 363.
What calls HeadersFrame()?
HeadersFrame() is called by 1 function(s): ChannelFuture.

Analyze Your Own Codebase

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

Try Supermodel Free