Home / Function/ testDynamicTableSizeUpdate() — netty Function Reference

testDynamicTableSizeUpdate() — netty Function Reference

Architecture documentation for the testDynamicTableSizeUpdate() function in HpackDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  87132f86_1b95_2599_b055_13b4f39bd760["testDynamicTableSizeUpdate()"]
  499468ca_3853_024b_2b80_17090ef6cd43["HpackDecoderTest"]
  87132f86_1b95_2599_b055_13b4f39bd760 -->|defined in| 499468ca_3853_024b_2b80_17090ef6cd43
  47ac4151_0b50_9884_0d18_472d1c51065d["decode()"]
  87132f86_1b95_2599_b055_13b4f39bd760 -->|calls| 47ac4151_0b50_9884_0d18_472d1c51065d
  style 87132f86_1b95_2599_b055_13b4f39bd760 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 328–334

    @Test
    public void testDynamicTableSizeUpdate() throws Http2Exception {
        decode("20");
        assertEquals(0, hpackDecoder.getMaxHeaderTableSize());
        decode("3FE11F");
        assertEquals(4096, hpackDecoder.getMaxHeaderTableSize());
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testDynamicTableSizeUpdate() do?
testDynamicTableSizeUpdate() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testDynamicTableSizeUpdate() defined?
testDynamicTableSizeUpdate() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 328.
What does testDynamicTableSizeUpdate() call?
testDynamicTableSizeUpdate() calls 1 function(s): decode.

Analyze Your Own Codebase

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

Try Supermodel Free