Home / Function/ assertInboundStreamFrame() — netty Function Reference

assertInboundStreamFrame() — netty Function Reference

Architecture documentation for the assertInboundStreamFrame() function in Http2FrameCodecTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  1f43e80a_48bc_a810_7d85_f69db612ca49["assertInboundStreamFrame()"]
  71f17950_8fc4_c3e9_2e13_384d1ac7ea2c["Http2FrameCodecTest"]
  1f43e80a_48bc_a810_7d85_f69db612ca49 -->|defined in| 71f17950_8fc4_c3e9_2e13_384d1ac7ea2c
  5d267977_c635_64ef_957a_5a75f1628071["priorityForExistingStream()"]
  5d267977_c635_64ef_957a_5a75f1628071 -->|calls| 1f43e80a_48bc_a810_7d85_f69db612ca49
  7feff9c1_71c6_7ac7_1c17_78dfc82ed4c5["writeHeaderAndAssert()"]
  7feff9c1_71c6_7ac7_1c17_78dfc82ed4c5 -->|calls| 1f43e80a_48bc_a810_7d85_f69db612ca49
  style 1f43e80a_48bc_a810_7d85_f69db612ca49 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameCodecTest.java lines 997–1003

    private void assertInboundStreamFrame(int expectedId, Http2StreamFrame streamFrame) {
        Http2StreamFrame inboundFrame = inboundHandler.readInbound();
        Http2FrameStream stream2 = inboundFrame.stream();
        assertNotNull(stream2);
        assertEquals(expectedId, stream2.id());
        assertEquals(inboundFrame, streamFrame.stream(stream2));
    }

Domain

Subdomains

Frequently Asked Questions

What does assertInboundStreamFrame() do?
assertInboundStreamFrame() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameCodecTest.java.
Where is assertInboundStreamFrame() defined?
assertInboundStreamFrame() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameCodecTest.java at line 997.
What calls assertInboundStreamFrame()?
assertInboundStreamFrame() is called by 2 function(s): priorityForExistingStream, writeHeaderAndAssert.

Analyze Your Own Codebase

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

Try Supermodel Free