Home / Function/ testStreamClosedWhileParentIsInactive() — netty Function Reference

testStreamClosedWhileParentIsInactive() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/QpackStreamHandlerTest.java lines 40–49

    @Test
    public void testStreamClosedWhileParentIsInactive() throws Exception {
        EmbeddedQuicChannel parent = new EmbeddedQuicChannel(true);
        parent.close().get();

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

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free