readGoAwayFrame() — netty Function Reference
Architecture documentation for the readGoAwayFrame() function in DefaultHttp2FrameReader.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 15ab4d49_49fe_3d88_f0d6_9d2f06600682["readGoAwayFrame()"] 3768d640_58c2_34e7_3d69_a4b578e0d11a["DefaultHttp2FrameReader"] 15ab4d49_49fe_3d88_f0d6_9d2f06600682 -->|defined in| 3768d640_58c2_34e7_3d69_a4b578e0d11a e711693c_32ed_ac69_29f1_ce5694750979["processPayloadState()"] e711693c_32ed_ac69_29f1_ce5694750979 -->|calls| 15ab4d49_49fe_3d88_f0d6_9d2f06600682 style 15ab4d49_49fe_3d88_f0d6_9d2f06600682 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java lines 572–577
private void readGoAwayFrame(ChannelHandlerContext ctx, ByteBuf payload,
Http2FrameListener listener) throws Http2Exception {
int lastStreamId = readUnsignedInt(payload);
long errorCode = payload.readUnsignedInt();
listener.onGoAwayRead(ctx, lastStreamId, errorCode, payload);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does readGoAwayFrame() do?
readGoAwayFrame() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java.
Where is readGoAwayFrame() defined?
readGoAwayFrame() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java at line 572.
What calls readGoAwayFrame()?
readGoAwayFrame() is called by 1 function(s): processPayloadState.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free