serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() — netty Function Reference
Architecture documentation for the serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() function in DefaultHttp2ConnectionTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 17910c4b_b355_565c_9698_1d29a40ea51e["serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded()"] 8ad19b2d_97df_9c7f_e36e_ed43457889f2["DefaultHttp2ConnectionTest"] 17910c4b_b355_565c_9698_1d29a40ea51e -->|defined in| 8ad19b2d_97df_9c7f_e36e_ed43457889f2 style 17910c4b_b355_565c_9698_1d29a40ea51e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionTest.java lines 419–430
@Test
public void serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() throws Http2Exception {
server = new DefaultHttp2Connection(true, 0);
server.remote().maxActiveStreams(1);
final Http2Stream requestStream = server.remote().createStream(3, false);
assertThrows(Http2Exception.class, new Executable() {
@Override
public void execute() throws Throwable {
server.remote().reservePushStream(2, requestStream);
}
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() do?
serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionTest.java.
Where is serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() defined?
serverCreatePushShouldFailOnRemoteEndpointWhenMaxAllowedStreamsExceeded() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionTest.java at line 419.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free