Home / Function/ Http2HeaderEntry() — netty Function Reference

Http2HeaderEntry() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  968b6238_124e_38e3_bf42_3e40c8b95f9a["Http2HeaderEntry()"]
  ce82a4d4_0be2_a3cc_3637_5fc57946e2c4["Http2HeaderEntry"]
  968b6238_124e_38e3_bf42_3e40c8b95f9a -->|defined in| ce82a4d4_0be2_a3cc_3637_5fc57946e2c4
  d4fd8d42_6053_ce6f_0c1b_0e9043caa000["newHeaderEntry()"]
  d4fd8d42_6053_ce6f_0c1b_0e9043caa000 -->|calls| 968b6238_124e_38e3_bf42_3e40c8b95f9a
  style 968b6238_124e_38e3_bf42_3e40c8b95f9a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Headers.java lines 274–292

        Http2HeaderEntry(int hash, CharSequence key, CharSequence value,
                HeaderEntry<CharSequence, CharSequence> next) {
            super(hash, key);
            this.value = value;
            this.next = next;

            // Make sure the pseudo headers fields are first in iteration order
            if (hasPseudoHeaderFormat(key)) {
                after = firstNonPseudo;
                before = firstNonPseudo.before();
            } else {
                after = head;
                before = head.before();
                if (firstNonPseudo == head) {
                    firstNonPseudo = this;
                }
            }
            pointNeighborsToThis();
        }

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free