Home / Type/ Configuration Type — netty Architecture

Configuration Type — netty Architecture

Architecture documentation for the Configuration type/interface in Http2HeadersEncoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  0c52b2fa_0f00_eb9d_08c7_d54db6aaa567["Configuration"]
  5970f62b_2e0b_1ad7_c0b0_4df1f32cfed4["Http2HeadersEncoder.java"]
  0c52b2fa_0f00_eb9d_08c7_d54db6aaa567 -->|defined in| 5970f62b_2e0b_1ad7_c0b0_4df1f32cfed4
  style 0c52b2fa_0f00_eb9d_08c7_d54db6aaa567 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2HeadersEncoder.java lines 27–54

    interface Configuration {
        /**
         * Represents the value for
         * <a href="https://tools.ietf.org/html/rfc7540#section-6.5.2">SETTINGS_HEADER_TABLE_SIZE</a>.
         * This method should only be called by Netty (not users) as a result of a receiving a {@code SETTINGS} frame.
         */
        void maxHeaderTableSize(long max) throws Http2Exception;

        /**
         * Represents the value for
         * <a href="https://tools.ietf.org/html/rfc7540#section-6.5.2">SETTINGS_HEADER_TABLE_SIZE</a>.
         * The initial value returned by this method must be {@link Http2CodecUtil#DEFAULT_HEADER_TABLE_SIZE}.
         */
        long maxHeaderTableSize();

        /**
         * Represents the value for
         * <a href="https://tools.ietf.org/html/rfc7540#section-6.5.2">SETTINGS_MAX_HEADER_LIST_SIZE</a>.
         * This method should only be called by Netty (not users) as a result of a receiving a {@code SETTINGS} frame.
         */
        void maxHeaderListSize(long max) throws Http2Exception;

        /**
         * Represents the value for
         * <a href="https://tools.ietf.org/html/rfc7540#section-6.5.2">SETTINGS_MAX_HEADER_LIST_SIZE</a>.
         */
        long maxHeaderListSize();
    }

Frequently Asked Questions

What is the Configuration type?
Configuration is a type/interface in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2HeadersEncoder.java.
Where is Configuration defined?
Configuration is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2HeadersEncoder.java at line 27.

Analyze Your Own Codebase

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

Try Supermodel Free