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