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