Home / Function/ decodeLargerThanHeaderListSizeButLessThanGoAway() — netty Function Reference

decodeLargerThanHeaderListSizeButLessThanGoAway() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  13455804_c678_5d9f_7a50_4e3fae5e89ac["decodeLargerThanHeaderListSizeButLessThanGoAway()"]
  bddf27d1_0dcd_a270_e076_3c8aa8b9b31f["DefaultHttp2HeadersDecoderTest"]
  13455804_c678_5d9f_7a50_4e3fae5e89ac -->|defined in| bddf27d1_0dcd_a270_e076_3c8aa8b9b31f
  style 13455804_c678_5d9f_7a50_4e3fae5e89ac fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java lines 85–99

    @Test
    public void decodeLargerThanHeaderListSizeButLessThanGoAway() throws Exception {
        decoder.maxHeaderListSize(MIN_HEADER_LIST_SIZE, MAX_HEADER_LIST_SIZE);
        final ByteBuf buf = encode(b(":method"), b("GET"));
        final int streamId = 1;
        Http2Exception.HeaderListSizeException e =
                assertThrows(Http2Exception.HeaderListSizeException.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                decoder.decodeHeaders(streamId, buf);
            }
        });
        assertEquals(streamId, e.streamId());
        buf.release();
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free