standardSettingsShouldBeSet() — netty Function Reference
Architecture documentation for the standardSettingsShouldBeSet() function in Http2SettingsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1["standardSettingsShouldBeSet()"] 910ec026_5946_ddbf_7e19_bbbdae11da3a["Http2SettingsTest"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|defined in| 910ec026_5946_ddbf_7e19_bbbdae11da3a 0771a112_8845_4900_7750_c4b8cba44902["initialWindowSize()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 0771a112_8845_4900_7750_c4b8cba44902 76e15414_11b5_2c13_e206_e2c86766f63c["maxConcurrentStreams()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 76e15414_11b5_2c13_e206_e2c86766f63c 533909bb_c579_9d6d_254c_d82af77c98b8["pushEnabled()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 533909bb_c579_9d6d_254c_d82af77c98b8 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1["headerTableSize()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 1cc8a449_3de5_276b_7d6e_3d797fc7c8c1 0480e6c0_9cf9_8620_0aaf_febece3d753b["maxFrameSize()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 0480e6c0_9cf9_8620_0aaf_febece3d753b 3faf6fb0_2468_fce7_7b7c_d96a48aa277a["connectProtocolEnabled()"] 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 -->|calls| 3faf6fb0_2468_fce7_7b7c_d96a48aa277a style 4af7eef6_2ef8_1cff_cb2d_7f275af7f8e1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java lines 67–83
@Test
public void standardSettingsShouldBeSet() {
settings.initialWindowSize(1);
settings.maxConcurrentStreams(2);
settings.pushEnabled(true);
settings.headerTableSize(3);
settings.maxFrameSize(MAX_FRAME_SIZE_UPPER_BOUND);
settings.maxHeaderListSize(4);
settings.connectProtocolEnabled(true);
assertEquals(1, (int) settings.initialWindowSize());
assertEquals(2L, (long) settings.maxConcurrentStreams());
assertTrue(settings.pushEnabled());
assertEquals(3L, (long) settings.headerTableSize());
assertEquals(MAX_FRAME_SIZE_UPPER_BOUND, (int) settings.maxFrameSize());
assertEquals(4L, (long) settings.maxHeaderListSize());
assertTrue(settings.connectProtocolEnabled());
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does standardSettingsShouldBeSet() do?
standardSettingsShouldBeSet() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java.
Where is standardSettingsShouldBeSet() defined?
standardSettingsShouldBeSet() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2SettingsTest.java at line 67.
What does standardSettingsShouldBeSet() call?
standardSettingsShouldBeSet() calls 6 function(s): connectProtocolEnabled, headerTableSize, initialWindowSize, maxConcurrentStreams, maxFrameSize, pushEnabled.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free