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