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