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