Home / Function/ removeFromPool() — netty Function Reference

removeFromPool() — netty Function Reference

Architecture documentation for the removeFromPool() function in PoolSubpage.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  ece8cfac_ec12_b1cc_40c7_2768a79012a6["removeFromPool()"]
  a6a571ea_fcf9_6eda_c073_f8d61fa999a3["PoolSubpage"]
  ece8cfac_ec12_b1cc_40c7_2768a79012a6 -->|defined in| a6a571ea_fcf9_6eda_c073_f8d61fa999a3
  a871ec93_3c33_5694_cdf3_d9e756a2556c["allocate()"]
  a871ec93_3c33_5694_cdf3_d9e756a2556c -->|calls| ece8cfac_ec12_b1cc_40c7_2768a79012a6
  83bbb0dd_3188_7350_8354_910efc6a1ada["free()"]
  83bbb0dd_3188_7350_8354_910efc6a1ada -->|calls| ece8cfac_ec12_b1cc_40c7_2768a79012a6
  style ece8cfac_ec12_b1cc_40c7_2768a79012a6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/main/java/io/netty/buffer/PoolSubpage.java lines 161–167

    private void removeFromPool() {
        assert prev != null && next != null;
        prev.next = next;
        next.prev = prev;
        next = null;
        prev = null;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does removeFromPool() do?
removeFromPool() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/PoolSubpage.java.
Where is removeFromPool() defined?
removeFromPool() is defined in buffer/src/main/java/io/netty/buffer/PoolSubpage.java at line 161.
What calls removeFromPool()?
removeFromPool() is called by 2 function(s): allocate, free.

Analyze Your Own Codebase

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

Try Supermodel Free