Home / Function/ clientLocalCreateStreamExhaustedSpace() — netty Function Reference

clientLocalCreateStreamExhaustedSpace() — netty Function Reference

Architecture documentation for the clientLocalCreateStreamExhaustedSpace() function in DefaultHttp2ConnectionTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  0cf45a47_8160_573e_96ef_8e0d9d84de72["clientLocalCreateStreamExhaustedSpace()"]
  8ad19b2d_97df_9c7f_e36e_ed43457889f2["DefaultHttp2ConnectionTest"]
  0cf45a47_8160_573e_96ef_8e0d9d84de72 -->|defined in| 8ad19b2d_97df_9c7f_e36e_ed43457889f2
  style 0cf45a47_8160_573e_96ef_8e0d9d84de72 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionTest.java lines 365–376

    @Test
    public void clientLocalCreateStreamExhaustedSpace() throws Http2Exception {
        client.local().createStream(MAX_VALUE, true);
        Http2Exception expected = assertThrows(Http2Exception.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                client.local().createStream(MAX_VALUE, true);
            }
        });
        assertEquals(Http2Error.REFUSED_STREAM, expected.error());
        assertEquals(Http2Exception.ShutdownHint.GRACEFUL_SHUTDOWN, expected.shutdownHint());
    }

Domain

Subdomains

Frequently Asked Questions

What does clientLocalCreateStreamExhaustedSpace() do?
clientLocalCreateStreamExhaustedSpace() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionTest.java.
Where is clientLocalCreateStreamExhaustedSpace() defined?
clientLocalCreateStreamExhaustedSpace() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionTest.java at line 365.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free