Home / Function/ notifyListeners0() — netty Function Reference

notifyListeners0() — netty Function Reference

Architecture documentation for the notifyListeners0() function in DefaultPromise.java from the netty codebase.

Function java CommonUtil Concurrent calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  8d347e1e_c85a_2fbf_ef7c_f6a27604e95b["notifyListeners0()"]
  a0080a71_f091_42e0_8a20_424f0bf9d34a["DefaultPromise"]
  8d347e1e_c85a_2fbf_ef7c_f6a27604e95b -->|defined in| a0080a71_f091_42e0_8a20_424f0bf9d34a
  cc9ae68c_24a7_07de_3637_ca681cc4b97f["notifyListenersNow()"]
  cc9ae68c_24a7_07de_3637_ca681cc4b97f -->|calls| 8d347e1e_c85a_2fbf_ef7c_f6a27604e95b
  8f88ad04_0acd_d483_f263_48a343c14b45["notifyListener0()"]
  8d347e1e_c85a_2fbf_ef7c_f6a27604e95b -->|calls| 8f88ad04_0acd_d483_f263_48a343c14b45
  style 8d347e1e_c85a_2fbf_ef7c_f6a27604e95b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/concurrent/DefaultPromise.java lines 593–599

    private void notifyListeners0(DefaultFutureListeners listeners) {
        GenericFutureListener<?>[] a = listeners.listeners();
        int size = listeners.size();
        for (int i = 0; i < size; i ++) {
            notifyListener0(this, a[i]);
        }
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free