readContinuationFrame() — netty Function Reference
Architecture documentation for the readContinuationFrame() function in DefaultHttp2FrameReader.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b000eb2c_ee21_83fc_2f6d_df321082b513["readContinuationFrame()"] 3768d640_58c2_34e7_3d69_a4b578e0d11a["DefaultHttp2FrameReader"] b000eb2c_ee21_83fc_2f6d_df321082b513 -->|defined in| 3768d640_58c2_34e7_3d69_a4b578e0d11a e711693c_32ed_ac69_29f1_ce5694750979["processPayloadState()"] e711693c_32ed_ac69_29f1_ce5694750979 -->|calls| b000eb2c_ee21_83fc_2f6d_df321082b513 ca5e2820_c99c_1b79_5ed5_5304bbcba862["processFragment()"] b000eb2c_ee21_83fc_2f6d_df321082b513 -->|calls| ca5e2820_c99c_1b79_5ed5_5304bbcba862 a643c6da_1c17_3da8_8399_b25cd9e26e55["resetHeadersContinuationIfEnd()"] b000eb2c_ee21_83fc_2f6d_df321082b513 -->|calls| a643c6da_1c17_3da8_8399_b25cd9e26e55 style b000eb2c_ee21_83fc_2f6d_df321082b513 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java lines 596–602
private void readContinuationFrame(ByteBuf payload, Http2FrameListener listener)
throws Http2Exception {
// Process the initial fragment, invoking the listener's callback if end of headers.
headersContinuation.processFragment(flags.endOfHeaders(), payload,
payloadLength, listener);
resetHeadersContinuationIfEnd(flags.endOfHeaders());
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does readContinuationFrame() do?
readContinuationFrame() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java.
Where is readContinuationFrame() defined?
readContinuationFrame() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameReader.java at line 596.
What does readContinuationFrame() call?
readContinuationFrame() calls 2 function(s): processFragment, resetHeadersContinuationIfEnd.
What calls readContinuationFrame()?
readContinuationFrame() 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