idleOutboundStreamShouldNotWriteResetFrameOnClose() — netty Function Reference
Architecture documentation for the idleOutboundStreamShouldNotWriteResetFrameOnClose() function in Http2MultiplexTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 58470420_be16_cfa8_f950_83a3daaeaa09["idleOutboundStreamShouldNotWriteResetFrameOnClose()"] 4745ff96_ed57_3bd8_9861_4b786d0b6e09["Http2MultiplexTest"] 58470420_be16_cfa8_f950_83a3daaeaa09 -->|defined in| 4745ff96_ed57_3bd8_9861_4b786d0b6e09 style 58470420_be16_cfa8_f950_83a3daaeaa09 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java lines 772–785
@Test
public void idleOutboundStreamShouldNotWriteResetFrameOnClose() {
LastInboundHandler handler = new LastInboundHandler();
Channel childChannel = newOutboundStream(handler);
assertTrue(childChannel.isActive());
childChannel.close();
parentChannel.runPendingTasks();
assertFalse(childChannel.isOpen());
assertFalse(childChannel.isActive());
assertNull(parentChannel.readOutbound());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does idleOutboundStreamShouldNotWriteResetFrameOnClose() do?
idleOutboundStreamShouldNotWriteResetFrameOnClose() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java.
Where is idleOutboundStreamShouldNotWriteResetFrameOnClose() defined?
idleOutboundStreamShouldNotWriteResetFrameOnClose() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2MultiplexTest.java at line 772.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free