Home / Function/ insertLiterals() — netty Function Reference

insertLiterals() — netty Function Reference

Architecture documentation for the insertLiterals() function in QpackDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  cc508620_cb23_3737_9a3d_66fd1ac40163["insertLiterals()"]
  306cb9ff_c699_c029_57de_27fe788cc819["QpackDecoderTest"]
  cc508620_cb23_3737_9a3d_66fd1ac40163 -->|defined in| 306cb9ff_c699_c029_57de_27fe788cc819
  0d41f851_2b4a_4925_0218_9800a45c4576["requiredInsertCountAsInserted()"]
  0d41f851_2b4a_4925_0218_9800a45c4576 -->|calls| cc508620_cb23_3737_9a3d_66fd1ac40163
  edfb543f_9971_0ce8_9bd6_9ed83e4b5a07["requiredInsertCountLessThanInserted()"]
  edfb543f_9971_0ce8_9bd6_9ed83e4b5a07 -->|calls| cc508620_cb23_3737_9a3d_66fd1ac40163
  fbd33333_5aa0_c1b7_010b_80b802018ee1["requiredInsertCountBehindMax()"]
  fbd33333_5aa0_c1b7_010b_80b802018ee1 -->|calls| cc508620_cb23_3737_9a3d_66fd1ac40163
  6973559d_619b_85fb_3e6a_3ea043f41865["getWithRelativeIndex()"]
  6973559d_619b_85fb_3e6a_3ea043f41865 -->|calls| cc508620_cb23_3737_9a3d_66fd1ac40163
  7e5aa6e0_4594_4d29_9af7_d13e12bbdd5c["getWithPostBaseRelativeIndex()"]
  7e5aa6e0_4594_4d29_9af7_d13e12bbdd5c -->|calls| cc508620_cb23_3737_9a3d_66fd1ac40163
  style cc508620_cb23_3737_9a3d_66fd1ac40163 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderTest.java lines 157–163

    private void insertLiterals(int count) throws QpackException {
        for (int i = 1; i <= count; i++) {
            inserted++;
            decoder.insertLiteral(decoderStream, FOO + i, BAR + i);
        }
        assertThat(decoderStream.finishAndReleaseAll(), is(count > 0));
    }

Domain

Subdomains

Frequently Asked Questions

What does insertLiterals() do?
insertLiterals() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderTest.java.
Where is insertLiterals() defined?
insertLiterals() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackDecoderTest.java at line 157.
What calls insertLiterals()?
insertLiterals() is called by 5 function(s): getWithPostBaseRelativeIndex, getWithRelativeIndex, requiredInsertCountAsInserted, requiredInsertCountBehindMax, requiredInsertCountLessThanInserted.

Analyze Your Own Codebase

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

Try Supermodel Free