invalidIncrement() — netty Function Reference
Architecture documentation for the invalidIncrement() function in QpackDecoderHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cad22116_882a_ed01_08a0_ace8a7f069b4["invalidIncrement()"] 708fffe6_76c4_53cd_c185_aade2e79a203["QpackDecoderHandlerTest"] cad22116_882a_ed01_08a0_ace8a7f069b4 -->|defined in| 708fffe6_76c4_53cd_c185_aade2e79a203 1a446418_ae1b_2891_734d_206ade84e01d["setup()"] cad22116_882a_ed01_08a0_ace8a7f069b4 -->|calls| 1a446418_ae1b_2891_734d_206ade84e01d daa4b581_1741_b0bb_2225_366ee5bd1cb0["sendInsertCountIncrement()"] cad22116_882a_ed01_08a0_ace8a7f069b4 -->|calls| daa4b581_1741_b0bb_2225_366ee5bd1cb0 50c2df80_93cc_bdac_0c0e_e8c78e539cb0["finishStreams()"] cad22116_882a_ed01_08a0_ace8a7f069b4 -->|calls| 50c2df80_93cc_bdac_0c0e_e8c78e539cb0 style cad22116_882a_ed01_08a0_ace8a7f069b4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java lines 255–263
@Test
public void invalidIncrement() throws Exception {
setup(128);
Http3Exception e = assertThrows(Http3Exception.class, () -> sendInsertCountIncrement(2));
assertThat(e.getCause(), instanceOf(QpackException.class));
Http3TestUtils.verifyClose(QPACK_DECODER_STREAM_ERROR, parent);
finishStreams();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does invalidIncrement() do?
invalidIncrement() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java.
Where is invalidIncrement() defined?
invalidIncrement() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java at line 255.
What does invalidIncrement() call?
invalidIncrement() calls 3 function(s): finishStreams, sendInsertCountIncrement, setup.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free