Home / Function/ sectionAckMultiPostAck() — netty Function Reference

sectionAckMultiPostAck() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderHandlerTest.java lines 129–145

    @Test
    public void sectionAckMultiPostAck() throws Exception {
        setup(128L);
        encodeHeaders(headers -> headers.add(fooBar.name, fooBar.value));
        sendInsertCountIncrement(1);
        // Refer now to dynamic table
        encodeHeaders(headers -> headers.add(fooBar.name, fooBar.value));
        sendAckForStreamId(decoderStream.streamId());

        encodeHeaders(headers -> headers.add(fooBar.name, fooBar.value));
        sendAckForStreamId(decoderStream.streamId());

        finishStreams();

        verifyRequiredInsertCount(1);
        verifyKnownReceivedCount(1);
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free