Home / Function/ removeFromVariablesToRemove() — netty Function Reference

removeFromVariablesToRemove() — netty Function Reference

Architecture documentation for the removeFromVariablesToRemove() function in FastThreadLocal.java from the netty codebase.

Function java CommonUtil Concurrent calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  ad42c8d2_ed18_9e7c_42e2_f00f51b8e0be["removeFromVariablesToRemove()"]
  dc6344c3_40c4_25b8_2eda_8ec5bb8163b3["FastThreadLocal"]
  ad42c8d2_ed18_9e7c_42e2_f00f51b8e0be -->|defined in| dc6344c3_40c4_25b8_2eda_8ec5bb8163b3
  277e015e_1062_f2b5_7f17_dacb7cb7fec5["V()"]
  277e015e_1062_f2b5_7f17_dacb7cb7fec5 -->|calls| ad42c8d2_ed18_9e7c_42e2_f00f51b8e0be
  5a30b348_866f_4505_5309_1f89c39f3785["remove()"]
  ad42c8d2_ed18_9e7c_42e2_f00f51b8e0be -->|calls| 5a30b348_866f_4505_5309_1f89c39f3785
  style ad42c8d2_ed18_9e7c_42e2_f00f51b8e0be fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java lines 112–124

    private static void removeFromVariablesToRemove(
            InternalThreadLocalMap threadLocalMap, FastThreadLocal<?> variable) {

        Object v = threadLocalMap.indexedVariable(VARIABLES_TO_REMOVE_INDEX);

        if (v == InternalThreadLocalMap.UNSET || v == null) {
            return;
        }

        @SuppressWarnings("unchecked")
        Set<FastThreadLocal<?>> variablesToRemove = (Set<FastThreadLocal<?>>) v;
        variablesToRemove.remove(variable);
    }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does removeFromVariablesToRemove() do?
removeFromVariablesToRemove() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java.
Where is removeFromVariablesToRemove() defined?
removeFromVariablesToRemove() is defined in common/src/main/java/io/netty/util/concurrent/FastThreadLocal.java at line 112.
What does removeFromVariablesToRemove() call?
removeFromVariablesToRemove() calls 1 function(s): remove.
What calls removeFromVariablesToRemove()?
removeFromVariablesToRemove() is called by 1 function(s): V.

Analyze Your Own Codebase

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

Try Supermodel Free