Home / Function/ isLiveNonVolatile() — netty Function Reference

isLiveNonVolatile() — netty Function Reference

Architecture documentation for the isLiveNonVolatile() function in RefCnt.java from the netty codebase.

Function java CommonUtil Internal calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  76f11d1e_7572_363c_3f5a_dda142d3104d["isLiveNonVolatile()"]
  9f3f6929_64f5_00fb_95fc_73dbc8960435["RefCnt"]
  76f11d1e_7572_363c_3f5a_dda142d3104d -->|defined in| 9f3f6929_64f5_00fb_95fc_73dbc8960435
  150518bc_e096_7725_ae26_2e621724a844["isLiveNonVolatile()"]
  150518bc_e096_7725_ae26_2e621724a844 -->|calls| 76f11d1e_7572_363c_3f5a_dda142d3104d
  9bd9adbf_395c_5e93_a5eb_60f64bffe3a7["isLiveNonVolatile()"]
  9bd9adbf_395c_5e93_a5eb_60f64bffe3a7 -->|calls| 76f11d1e_7572_363c_3f5a_dda142d3104d
  9bd9adbf_395c_5e93_a5eb_60f64bffe3a7["isLiveNonVolatile()"]
  76f11d1e_7572_363c_3f5a_dda142d3104d -->|calls| 9bd9adbf_395c_5e93_a5eb_60f64bffe3a7
  style 76f11d1e_7572_363c_3f5a_dda142d3104d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/RefCnt.java lines 180–190

    public static boolean isLiveNonVolatile(RefCnt ref) {
        switch (REF_CNT_IMPL) {
        case UNSAFE:
            return UnsafeRefCnt.isLiveNonVolatile(ref);
        case VAR_HANDLE:
            return VarHandleRefCnt.isLiveNonVolatile(ref);
        case ATOMIC_UPDATER:
        default:
            return AtomicRefCnt.isLiveNonVolatile(ref);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does isLiveNonVolatile() do?
isLiveNonVolatile() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/RefCnt.java.
Where is isLiveNonVolatile() defined?
isLiveNonVolatile() is defined in common/src/main/java/io/netty/util/internal/RefCnt.java at line 180.
What does isLiveNonVolatile() call?
isLiveNonVolatile() calls 1 function(s): isLiveNonVolatile.
What calls isLiveNonVolatile()?
isLiveNonVolatile() is called by 2 function(s): isLiveNonVolatile, isLiveNonVolatile.

Analyze Your Own Codebase

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

Try Supermodel Free