getNextAvail() — netty Function Reference
Architecture documentation for the getNextAvail() function in PoolSubpage.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c43f611b_3492_7c52_e24a_c4a5fff99a83["getNextAvail()"] a6a571ea_fcf9_6eda_c073_f8d61fa999a3["PoolSubpage"] c43f611b_3492_7c52_e24a_c4a5fff99a83 -->|defined in| a6a571ea_fcf9_6eda_c073_f8d61fa999a3 a871ec93_3c33_5694_cdf3_d9e756a2556c["allocate()"] a871ec93_3c33_5694_cdf3_d9e756a2556c -->|calls| c43f611b_3492_7c52_e24a_c4a5fff99a83 7ba71002_dc60_923d_b085_8336a9b1e977["findNextAvail()"] c43f611b_3492_7c52_e24a_c4a5fff99a83 -->|calls| 7ba71002_dc60_923d_b085_8336a9b1e977 style c43f611b_3492_7c52_e24a_c4a5fff99a83 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/PoolSubpage.java lines 173–180
private int getNextAvail() {
int nextAvail = this.nextAvail;
if (nextAvail >= 0) {
this.nextAvail = -1;
return nextAvail;
}
return findNextAvail();
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does getNextAvail() do?
getNextAvail() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/PoolSubpage.java.
Where is getNextAvail() defined?
getNextAvail() is defined in buffer/src/main/java/io/netty/buffer/PoolSubpage.java at line 173.
What does getNextAvail() call?
getNextAvail() calls 1 function(s): findNextAvail.
What calls getNextAvail()?
getNextAvail() is called by 1 function(s): allocate.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free