Home / Function/ getAndIncrementTail() — netty Function Reference

getAndIncrementTail() — netty Function Reference

Architecture documentation for the getAndIncrementTail() function in QpackDecoderDynamicTable.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  bd8ab1d6_10d4_2f03_f7b1_df7bdaa8dbfb["getAndIncrementTail()"]
  e47c8f6a_f830_eebc_e4ee_95298d931d9b["QpackDecoderDynamicTable"]
  bd8ab1d6_10d4_2f03_f7b1_df7bdaa8dbfb -->|defined in| e47c8f6a_f830_eebc_e4ee_95298d931d9b
  4fb10322_8b7c_4864_4e5b_818a8cf7ffb7["remove()"]
  4fb10322_8b7c_4864_4e5b_818a8cf7ffb7 -->|calls| bd8ab1d6_10d4_2f03_f7b1_df7bdaa8dbfb
  4cd4c61f_74ff_0bbf_6048_b6c0ee591c46["safeIncrementIndex()"]
  bd8ab1d6_10d4_2f03_f7b1_df7bdaa8dbfb -->|calls| 4cd4c61f_74ff_0bbf_6048_b6c0ee591c46
  style bd8ab1d6_10d4_2f03_f7b1_df7bdaa8dbfb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoderDynamicTable.java lines 157–161

    private int getAndIncrementTail() {
        int val = this.tail;
        this.tail = safeIncrementIndex(val);
        return val;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does getAndIncrementTail() do?
getAndIncrementTail() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoderDynamicTable.java.
Where is getAndIncrementTail() defined?
getAndIncrementTail() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoderDynamicTable.java at line 157.
What does getAndIncrementTail() call?
getAndIncrementTail() calls 1 function(s): safeIncrementIndex.
What calls getAndIncrementTail()?
getAndIncrementTail() is called by 1 function(s): remove.

Analyze Your Own Codebase

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

Try Supermodel Free