writeContinuationFrame() — netty Function Reference
Architecture documentation for the writeContinuationFrame() function in DefaultHttp2FrameReaderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 138f410e_5644_03b1_ba60_3b3caf8ac6f6["writeContinuationFrame()"] 66b2f0cc_bce5_f8e1_a7ee_93cd2a101951["DefaultHttp2FrameReaderTest"] 138f410e_5644_03b1_ba60_3b3caf8ac6f6 -->|defined in| 66b2f0cc_bce5_f8e1_a7ee_93cd2a101951 7fc7afea_f2c6_89e9_3db4_f270f03730bc["readHeaderFrameAndContinuationFrame()"] 7fc7afea_f2c6_89e9_3db4_f270f03730bc -->|calls| 138f410e_5644_03b1_ba60_3b3caf8ac6f6 0c665d82_cdd5_509d_5ddf_6fd13e9dbe58["failedWhenContinuationFrameStreamIdMismatch()"] 0c665d82_cdd5_509d_5ddf_6fd13e9dbe58 -->|calls| 138f410e_5644_03b1_ba60_3b3caf8ac6f6 1f496cb9_65be_6ed2_bf3d_9fb0752c643b["failedWhenContinuationFrameNotFollowHeaderFrame()"] 1f496cb9_65be_6ed2_bf3d_9fb0752c643b -->|calls| 138f410e_5644_03b1_ba60_3b3caf8ac6f6 style 138f410e_5644_03b1_ba60_3b3caf8ac6f6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java lines 521–532
private void writeContinuationFrame(
ByteBuf output, int streamId, Http2Headers headers,
Http2Flags flags) throws Http2Exception {
ByteBuf headerBlock = Unpooled.buffer();
try {
hpackEncoder.encodeHeaders(streamId, headerBlock, headers, Http2HeadersEncoder.NEVER_SENSITIVE);
writeFrameHeader(output, headerBlock.readableBytes(), CONTINUATION, flags, streamId);
output.writeBytes(headerBlock, headerBlock.readableBytes());
} finally {
headerBlock.release();
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does writeContinuationFrame() do?
writeContinuationFrame() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java.
Where is writeContinuationFrame() defined?
writeContinuationFrame() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java at line 521.
What calls writeContinuationFrame()?
writeContinuationFrame() is called by 3 function(s): failedWhenContinuationFrameNotFollowHeaderFrame, failedWhenContinuationFrameStreamIdMismatch, readHeaderFrameAndContinuationFrame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free