unhandledHttp2FramesShouldBePropagated() — netty Function Reference
Architecture documentation for the unhandledHttp2FramesShouldBePropagated() function in Http2MultiplexTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 70f2f326_8476_7687_41be_a0888269be0f["unhandledHttp2FramesShouldBePropagated()"] 4745ff96_ed57_3bd8_9861_4b786d0b6e09["Http2MultiplexTest"] 70f2f326_8476_7687_41be_a0888269be0f -->|defined in| 4745ff96_ed57_3bd8_9861_4b786d0b6e09 style 70f2f326_8476_7687_41be_a0888269be0f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java lines 547–559
@Test
public void unhandledHttp2FramesShouldBePropagated() {
Http2PingFrame pingFrame = new DefaultHttp2PingFrame(0);
frameInboundWriter.writeInboundPing(false, 0);
assertEquals(parentChannel.readInbound(), pingFrame);
DefaultHttp2GoAwayFrame goAwayFrame = new DefaultHttp2GoAwayFrame(1,
parentChannel.alloc().buffer().writeLong(8));
frameInboundWriter.writeInboundGoAway(0, goAwayFrame.errorCode(), goAwayFrame.content().retainedDuplicate());
Http2GoAwayFrame frame = parentChannel.readInbound();
assertEqualsAndRelease(frame, goAwayFrame);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does unhandledHttp2FramesShouldBePropagated() do?
unhandledHttp2FramesShouldBePropagated() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java.
Where is unhandledHttp2FramesShouldBePropagated() defined?
unhandledHttp2FramesShouldBePropagated() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java at line 547.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free