unguardedToAvailable() — netty Function Reference
Architecture documentation for the unguardedToAvailable() function in Recycler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a7837d50_9ce6_c313_2d40_bcc734557d3d["unguardedToAvailable()"] 892e9793_976b_14af_cfdd_de6349d8b941["DefaultHandle"] a7837d50_9ce6_c313_2d40_bcc734557d3d -->|defined in| 892e9793_976b_14af_cfdd_de6349d8b941 27b6de6e_40cd_477c_35e4_5d488668cbb6["unguardedRecycle()"] 27b6de6e_40cd_477c_35e4_5d488668cbb6 -->|calls| a7837d50_9ce6_c313_2d40_bcc734557d3d style a7837d50_9ce6_c313_2d40_bcc734557d3d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/Recycler.java lines 430–436
private void unguardedToAvailable() {
int prev = state;
if (prev == STATE_AVAILABLE) {
throw new IllegalStateException("Object has been recycled already.");
}
STATE_UPDATER.lazySet(this, STATE_AVAILABLE);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does unguardedToAvailable() do?
unguardedToAvailable() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/Recycler.java.
Where is unguardedToAvailable() defined?
unguardedToAvailable() is defined in common/src/main/java/io/netty/util/Recycler.java at line 430.
What calls unguardedToAvailable()?
unguardedToAvailable() is called by 1 function(s): unguardedRecycle.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free