Home / Function/ testStreamClosedWhileParentStillActive() — netty Function Reference

testStreamClosedWhileParentStillActive() — netty Function Reference

Architecture documentation for the testStreamClosedWhileParentStillActive() function in QpackStreamHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  9f679d1b_cc34_495a_0e14_f5f60b34672a["testStreamClosedWhileParentStillActive()"]
  fbff33cc_16fc_7dac_d771_48c9a472f820["QpackStreamHandlerTest"]
  9f679d1b_cc34_495a_0e14_f5f60b34672a -->|defined in| fbff33cc_16fc_7dac_d771_48c9a472f820
  style 9f679d1b_cc34_495a_0e14_f5f60b34672a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/QpackStreamHandlerTest.java lines 29–38

    @Test
    public void testStreamClosedWhileParentStillActive() throws Exception {
        EmbeddedQuicChannel parent = new EmbeddedQuicChannel(true);

        EmbeddedQuicStreamChannel channel =
                (EmbeddedQuicStreamChannel) parent.createStream(QuicStreamType.UNIDIRECTIONAL,
                        new QpackDecoderHandler(new QpackEncoder())).get();
        assertFalse(channel.finish());
        verifyClose(1, Http3ErrorCode.H3_CLOSED_CRITICAL_STREAM, parent);
    }

Domain

Subdomains

Frequently Asked Questions

What does testStreamClosedWhileParentStillActive() do?
testStreamClosedWhileParentStillActive() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackStreamHandlerTest.java.
Where is testStreamClosedWhileParentStillActive() defined?
testStreamClosedWhileParentStillActive() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackStreamHandlerTest.java at line 29.

Analyze Your Own Codebase

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

Try Supermodel Free