initialWindowSize() — netty Function Reference
Architecture documentation for the initialWindowSize() function in Http2SettingsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 0771a112_8845_4900_7750_c4b8cba44902["initialWindowSize()"] 910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"] 0771a112_8845_4900_7750_c4b8cba44902 -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a 304ccbe5_aa57_b22e_09db_926783c7fdb3["standardSettingsShouldBeNotSet()"] 304ccbe5_aa57_b22e_09db_926783c7fdb3 -->|calls| 0771a112_8845_4900_7750_c4b8cba44902 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1["standardSettingsShouldBeSet()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 0771a112_8845_4900_7750_c4b8cba44902 6d6ad496_7c6d_776d_3930_e915207b804d["initialWindowSizeIntBoundCheck()"] 6d6ad496_7c6d_776d_3930_e915207b804d -->|calls| 0771a112_8845_4900_7750_c4b8cba44902 style 0771a112_8845_4900_7750_c4b8cba44902 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 175–181
@ParameterizedTest(name = "{displayName} [{index}] value={0}")
@ValueSource(ints = {MIN_INITIAL_WINDOW_SIZE, MIN_INITIAL_WINDOW_SIZE + 1,
MAX_INITIAL_WINDOW_SIZE - 1, MAX_INITIAL_WINDOW_SIZE})
public void initialWindowSize(final int value) {
settings.initialWindowSize(value);
assertEquals(value, (int) settings.initialWindowSize());
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does initialWindowSize() do?
initialWindowSize() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is initialWindowSize() defined?
initialWindowSize() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 175.
What calls initialWindowSize()?
initialWindowSize() is called by 3 function(s): initialWindowSizeIntBoundCheck, standardSettingsShouldBeNotSet, standardSettingsShouldBeSet.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free