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