failedWhenContinuationFrameNotFollowHeaderFrame() — netty Function Reference
Architecture documentation for the failedWhenContinuationFrameNotFollowHeaderFrame() function in DefaultHttp2FrameReaderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1f496cb9_65be_6ed2_bf3d_9fb0752c643b["failedWhenContinuationFrameNotFollowHeaderFrame()"] 66b2f0cc_bce5_f8e1_a7ee_93cd2a101951["DefaultHttp2FrameReaderTest"] 1f496cb9_65be_6ed2_bf3d_9fb0752c643b -->|defined in| 66b2f0cc_bce5_f8e1_a7ee_93cd2a101951 138f410e_5644_03b1_ba60_3b3caf8ac6f6["writeContinuationFrame()"] 1f496cb9_65be_6ed2_bf3d_9fb0752c643b -->|calls| 138f410e_5644_03b1_ba60_3b3caf8ac6f6 style 1f496cb9_65be_6ed2_bf3d_9fb0752c643b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java lines 184–200
@Test
public void failedWhenContinuationFrameNotFollowHeaderFrame() throws Http2Exception {
final ByteBuf input = Unpooled.buffer();
try {
writeContinuationFrame(input, 1, new DefaultHttp2Headers().add("foo", "bar"),
new Http2Flags().endOfHeaders(true));
Http2Exception ex = assertThrows(Http2Exception.class, new Executable() {
@Override
public void execute() throws Throwable {
frameReader.readFrame(ctx, input, listener);
}
});
assertFalse(ex instanceof Http2Exception.StreamException);
} finally {
input.release();
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does failedWhenContinuationFrameNotFollowHeaderFrame() do?
failedWhenContinuationFrameNotFollowHeaderFrame() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java.
Where is failedWhenContinuationFrameNotFollowHeaderFrame() defined?
failedWhenContinuationFrameNotFollowHeaderFrame() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java at line 184.
What does failedWhenContinuationFrameNotFollowHeaderFrame() call?
failedWhenContinuationFrameNotFollowHeaderFrame() calls 1 function(s): writeContinuationFrame.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free