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