receiveGoaway() — netty Function Reference
Architecture documentation for the receiveGoaway() function in Http2FrameCodecTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b0cb90a4_d2d8_144d_ddc9_65aad57cbbe9["receiveGoaway()"] 71f17950_8fc4_c3e9_2e13_384d1ac7ea2c["Http2FrameCodecTest"] b0cb90a4_d2d8_144d_ddc9_65aad57cbbe9 -->|defined in| 71f17950_8fc4_c3e9_2e13_384d1ac7ea2c style b0cb90a4_d2d8_144d_ddc9_65aad57cbbe9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameCodecTest.java lines 363–373
@Test
public void receiveGoaway() throws Exception {
ByteBuf debugData = bb("foo");
frameInboundWriter.writeInboundGoAway(2, NO_ERROR.code(), debugData);
Http2GoAwayFrame expectedFrame = new DefaultHttp2GoAwayFrame(2, NO_ERROR.code(), bb("foo"));
Http2GoAwayFrame actualFrame = inboundHandler.readInbound();
assertEqualsAndRelease(expectedFrame, actualFrame);
assertNull(inboundHandler.readInbound());
}
Domain
Subdomains
Source
Frequently Asked Questions
What does receiveGoaway() do?
receiveGoaway() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameCodecTest.java.
Where is receiveGoaway() defined?
receiveGoaway() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2FrameCodecTest.java at line 363.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free