readUnkownFrame() — netty Function Reference
Architecture documentation for the readUnkownFrame() function in Http2MultiplexTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 90725e6e_8979_a0b2_92ee_955bdae8803f["readUnkownFrame()"] 4745ff96_ed57_3bd8_9861_4b786d0b6e09["Http2MultiplexTest"] 90725e6e_8979_a0b2_92ee_955bdae8803f -->|defined in| 4745ff96_ed57_3bd8_9861_4b786d0b6e09 8df7745b_db2d_ef92_4b30_080373ca9f6d["verifyFramesMultiplexedToCorrectChannel()"] 90725e6e_8979_a0b2_92ee_955bdae8803f -->|calls| 8df7745b_db2d_ef92_4b30_080373ca9f6d style 90725e6e_8979_a0b2_92ee_955bdae8803f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java lines 201–213
@Test
public void readUnkownFrame() {
LastInboundHandler handler = new LastInboundHandler();
Http2StreamChannel channel = newInboundStream(3, true, handler);
frameInboundWriter.writeInboundFrame((byte) 99, channel.stream().id(), new Http2Flags(), Unpooled.EMPTY_BUFFER);
// header frame and unknown frame
verifyFramesMultiplexedToCorrectChannel(channel, handler, 2);
Channel childChannel = newOutboundStream(new ChannelInboundHandlerAdapter());
assertTrue(childChannel.isActive());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does readUnkownFrame() do?
readUnkownFrame() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java.
Where is readUnkownFrame() defined?
readUnkownFrame() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java at line 201.
What does readUnkownFrame() call?
readUnkownFrame() calls 1 function(s): verifyFramesMultiplexedToCorrectChannel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free