headerTableSize() — netty Function Reference
Architecture documentation for the headerTableSize() function in Http2SettingsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1["headerTableSize()"] 910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"] 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1 -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a 304ccbe5_aa57_b22e_09db_926783c7fdb3["standardSettingsShouldBeNotSet()"] 304ccbe5_aa57_b22e_09db_926783c7fdb3 -->|calls| 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1["standardSettingsShouldBeSet()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1 cc7ec708_e6cd_93ac_2e5f_681245a2891c["headerTableSizeBoundCheck()"] cc7ec708_e6cd_93ac_2e5f_681245a2891c -->|calls| 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1 style 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 111–117
@ParameterizedTest(name = "{displayName} [{index}] value={0}")
@ValueSource(longs = {MIN_HEADER_TABLE_SIZE, MIN_HEADER_TABLE_SIZE + 1L,
MAX_HEADER_TABLE_SIZE - 1L, MAX_HEADER_TABLE_SIZE})
public void headerTableSize(final long value) {
settings.headerTableSize(value);
assertEquals(value, (long) settings.headerTableSize());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does headerTableSize() do?
headerTableSize() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is headerTableSize() defined?
headerTableSize() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 111.
What calls headerTableSize()?
headerTableSize() is called by 3 function(s): headerTableSizeBoundCheck, standardSettingsShouldBeNotSet, standardSettingsShouldBeSet.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free