Home / Function/ remove() — netty Function Reference

remove() — netty Function Reference

Architecture documentation for the remove() function in ConcurrentSkipListIntObjMultimap.java from the netty codebase.

Function java CommonUtil Concurrent calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  02990dff_c939_c57d_3b90_c70414aaa93a["remove()"]
  0ea610ee_82a9_e3f5_439a_eac3ffde1b52["Iter"]
  02990dff_c939_c57d_3b90_c70414aaa93a -->|defined in| 0ea610ee_82a9_e3f5_439a_eac3ffde1b52
  7a298538_fab1_9d5c_bb2a_55a4157a788f["remove()"]
  7a298538_fab1_9d5c_bb2a_55a4157a788f -->|calls| 02990dff_c939_c57d_3b90_c70414aaa93a
  7a298538_fab1_9d5c_bb2a_55a4157a788f["remove()"]
  02990dff_c939_c57d_3b90_c70414aaa93a -->|calls| 7a298538_fab1_9d5c_bb2a_55a4157a788f
  style 02990dff_c939_c57d_3b90_c70414aaa93a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/concurrent/ConcurrentSkipListIntObjMultimap.java lines 1492–1502

        @Override
        public final void remove() {
            Node<V> n; int k;
            if ((n = lastReturned) == null || (k = n.key) == noKey) {
                throw new IllegalStateException();
            }
            // It would not be worth all of the overhead to directly
            // unlink from here. Using remove is fast enough.
            ConcurrentSkipListIntObjMultimap.this.remove(k, n.val); // TODO: inline and optimize this
            lastReturned = null;
        }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free