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