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