Home / Function/ splitBufferForInsertCountIncrement() — netty Function Reference

splitBufferForInsertCountIncrement() — netty Function Reference

Architecture documentation for the splitBufferForInsertCountIncrement() function in QpackDecoderHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  5e771bc9_42b7_3343_c6a0_23cc484528b4["splitBufferForInsertCountIncrement()"]
  708fffe6_76c4_53cd_c185_aade2e79a203["QpackDecoderHandlerTest"]
  5e771bc9_42b7_3343_c6a0_23cc484528b4 -->|defined in| 708fffe6_76c4_53cd_c185_aade2e79a203
  1a446418_ae1b_2891_734d_206ade84e01d["setup()"]
  5e771bc9_42b7_3343_c6a0_23cc484528b4 -->|calls| 1a446418_ae1b_2891_734d_206ade84e01d
  6bdbff25_ef05_b353_a1c8_b5c4daa18e1e["encodeHeaders()"]
  5e771bc9_42b7_3343_c6a0_23cc484528b4 -->|calls| 6bdbff25_ef05_b353_a1c8_b5c4daa18e1e
  3dfbada1_312d_6009_d344_959cf16ab516["verifyRequiredInsertCount()"]
  5e771bc9_42b7_3343_c6a0_23cc484528b4 -->|calls| 3dfbada1_312d_6009_d344_959cf16ab516
  52098f8e_0248_dcf9_e997_aaadf688e076["verifyKnownReceivedCount()"]
  5e771bc9_42b7_3343_c6a0_23cc484528b4 -->|calls| 52098f8e_0248_dcf9_e997_aaadf688e076
  50c2df80_93cc_bdac_0c0e_e8c78e539cb0["finishStreams()"]
  5e771bc9_42b7_3343_c6a0_23cc484528b4 -->|calls| 50c2df80_93cc_bdac_0c0e_e8c78e539cb0
  style 5e771bc9_42b7_3343_c6a0_23cc484528b4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java lines 185–200

    @Test
    public void splitBufferForInsertCountIncrement() throws Exception {
        setup(128);
        encodeHeaders(headers -> headers.add(fooBar.name, fooBar.value));
        verifyRequiredInsertCount(1);
        final ByteBuf buf = encodeInsertCountIncrement(1);
        try {
            while (buf.isReadable()) {
                assertFalse(decoderStream.writeInbound(buf.readBytes(1)));
            }
        } finally {
            buf.release();
        }
        verifyKnownReceivedCount(1);
        finishStreams();
    }

Domain

Subdomains

Frequently Asked Questions

What does splitBufferForInsertCountIncrement() do?
splitBufferForInsertCountIncrement() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java.
Where is splitBufferForInsertCountIncrement() defined?
splitBufferForInsertCountIncrement() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java at line 185.
What does splitBufferForInsertCountIncrement() call?
splitBufferForInsertCountIncrement() calls 5 function(s): encodeHeaders, finishStreams, setup, verifyKnownReceivedCount, verifyRequiredInsertCount.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free