notifyProgressiveListener0() — netty Function Reference
Architecture documentation for the notifyProgressiveListener0() function in DefaultPromise.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 61bb1104_446e_eaf8_28b0_5521bc7a5104["notifyProgressiveListener0()"] a0080a71_f091_42e0_8a20_424f0bf9d34a["DefaultPromise"] 61bb1104_446e_eaf8_28b0_5521bc7a5104 -->|defined in| a0080a71_f091_42e0_8a20_424f0bf9d34a 1e633494_b539_e770_5553_1036e16a38a3["notifyProgressiveListeners()"] 1e633494_b539_e770_5553_1036e16a38a3 -->|calls| 61bb1104_446e_eaf8_28b0_5521bc7a5104 1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2["notifyProgressiveListeners0()"] 1eb4836f_ce1b_0ea3_493d_62aaa77fdcd2 -->|calls| 61bb1104_446e_eaf8_28b0_5521bc7a5104 style 61bb1104_446e_eaf8_28b0_5521bc7a5104 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/concurrent/DefaultPromise.java lines 850–860
@SuppressWarnings({ "unchecked", "rawtypes" })
private static void notifyProgressiveListener0(
ProgressiveFuture future, GenericProgressiveFutureListener l, long progress, long total) {
try {
l.operationProgressed(future, progress, total);
} catch (Throwable t) {
if (logger.isWarnEnabled()) {
logger.warn("An exception was thrown by " + l.getClass().getName() + ".operationProgressed()", t);
}
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does notifyProgressiveListener0() do?
notifyProgressiveListener0() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/DefaultPromise.java.
Where is notifyProgressiveListener0() defined?
notifyProgressiveListener0() is defined in common/src/main/java/io/netty/util/concurrent/DefaultPromise.java at line 850.
What calls notifyProgressiveListener0()?
notifyProgressiveListener0() is called by 2 function(s): notifyProgressiveListeners, notifyProgressiveListeners0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free