Home / Function/ inboundRstStreamFireChannelInactive() — netty Function Reference

inboundRstStreamFireChannelInactive() — netty Function Reference

Architecture documentation for the inboundRstStreamFireChannelInactive() function in Http2MultiplexTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  588a480d_b02c_547d_a8d6_b6464d4998d8["inboundRstStreamFireChannelInactive()"]
  4745ff96_ed57_3bd8_9861_4b786d0b6e09["Http2MultiplexTest"]
  588a480d_b02c_547d_a8d6_b6464d4998d8 -->|defined in| 4745ff96_ed57_3bd8_9861_4b786d0b6e09
  22928953_49fc_cbc5_c75c_f236ce1e1fc7["eqStreamId()"]
  588a480d_b02c_547d_a8d6_b6464d4998d8 -->|calls| 22928953_49fc_cbc5_c75c_f236ce1e1fc7
  style 588a480d_b02c_547d_a8d6_b6464d4998d8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java lines 843–855

    @Test
    public void inboundRstStreamFireChannelInactive() {
        LastInboundHandler inboundHandler = new LastInboundHandler();
        Http2StreamChannel channel = newInboundStream(3, false, inboundHandler);
        assertTrue(inboundHandler.isChannelActive());
        frameInboundWriter.writeInboundRstStream(channel.stream().id(), Http2Error.INTERNAL_ERROR.code());

        assertFalse(inboundHandler.isChannelActive());

        // A RST_STREAM frame should NOT be emitted, as we received a RST_STREAM.
        verify(frameWriter, never()).writeRstStream(eqCodecCtx(), eqStreamId(channel),
                anyLong(), anyChannelPromise());
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does inboundRstStreamFireChannelInactive() do?
inboundRstStreamFireChannelInactive() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java.
Where is inboundRstStreamFireChannelInactive() defined?
inboundRstStreamFireChannelInactive() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java at line 843.
What does inboundRstStreamFireChannelInactive() call?
inboundRstStreamFireChannelInactive() calls 1 function(s): eqStreamId.

Analyze Your Own Codebase

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

Try Supermodel Free