Home / Function/ HpackEncoder() — netty Function Reference

HpackEncoder() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  65354180_90ea_b9be_23e7_42ecd9c3aa4e["HpackEncoder()"]
  7b46bcd3_dbd5_a8a9_21a7_007c98b4f704["HpackTestCase"]
  65354180_90ea_b9be_23e7_42ecd9c3aa4e -->|defined in| 7b46bcd3_dbd5_a8a9_21a7_007c98b4f704
  style 65354180_90ea_b9be_23e7_42ecd9c3aa4e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackTestCase.java lines 158–169

    private HpackEncoder createEncoder() {
        int maxHeaderTableSize = this.maxHeaderTableSize;
        if (maxHeaderTableSize == -1) {
            maxHeaderTableSize = Integer.MAX_VALUE;
        }

        try {
            return newTestEncoder(true, MAX_HEADER_LIST_SIZE, maxHeaderTableSize);
        } catch (Http2Exception e) {
            throw new Error("invalid initial values!", e);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does HpackEncoder() do?
HpackEncoder() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackTestCase.java.
Where is HpackEncoder() defined?
HpackEncoder() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackTestCase.java at line 158.

Analyze Your Own Codebase

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

Try Supermodel Free