Home / Function/ notifyProgressiveListeners0() — netty Function Reference

notifyProgressiveListeners0() — netty Function Reference

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

Function java CommonUtil Concurrent calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2["notifyProgressiveListeners0()"]
  a0080a71_f091_42e0_8a20_424f0bf9d34a["DefaultPromise"]
  1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2 -->|defined in| a0080a71_f091_42e0_8a20_424f0bf9d34a
  1e633494_b539_e770_5553_1036e16a38a3["notifyProgressiveListeners()"]
  1e633494_b539_e770_5553_1036e16a38a3 -->|calls| 1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2
  61bb1104_446e_eaf8_28b0_5521bc7a5104["notifyProgressiveListener0()"]
  1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2 -->|calls| 61bb1104_446e_eaf8_28b0_5521bc7a5104
  style 1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/concurrent/DefaultPromise.java lines 840–848

    private static void notifyProgressiveListeners0(
            ProgressiveFuture<?> future, GenericProgressiveFutureListener<?>[] listeners, long progress, long total) {
        for (GenericProgressiveFutureListener<?> l: listeners) {
            if (l == null) {
                break;
            }
            notifyProgressiveListener0(future, l, progress, total);
        }
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free