ChannelPromiseNotifier Class — netty Architecture
Architecture documentation for the ChannelPromiseNotifier class in ChannelPromiseNotifier.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b3bf51c1_45b7_c1ba_2240_5287b695d5fa["ChannelPromiseNotifier"] f0dd5312_e88f_d952_8f01_85fff134fd80["ChannelPromiseNotifier.java"] b3bf51c1_45b7_c1ba_2240_5287b695d5fa -->|defined in| f0dd5312_e88f_d952_8f01_85fff134fd80 c01b55dd_4e03_82f0_b481_ce957002dffb["ChannelPromiseNotifier()"] b3bf51c1_45b7_c1ba_2240_5287b695d5fa -->|method| c01b55dd_4e03_82f0_b481_ce957002dffb
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/ChannelPromiseNotifier.java lines 25–48
@Deprecated
public final class ChannelPromiseNotifier
extends PromiseNotifier<Void, ChannelFuture>
implements ChannelFutureListener {
/**
* Create a new instance
*
* @param promises the {@link ChannelPromise}s to notify once this {@link ChannelFutureListener} is notified.
*/
public ChannelPromiseNotifier(ChannelPromise... promises) {
super(promises);
}
/**
* Create a new instance
*
* @param logNotifyFailure {@code true} if logging should be done in case notification fails.
* @param promises the {@link ChannelPromise}s to notify once this {@link ChannelFutureListener} is notified.
*/
public ChannelPromiseNotifier(boolean logNotifyFailure, ChannelPromise... promises) {
super(logNotifyFailure, promises);
}
}
Source
Frequently Asked Questions
What is the ChannelPromiseNotifier class?
ChannelPromiseNotifier is a class in the netty codebase, defined in transport/src/main/java/io/netty/channel/ChannelPromiseNotifier.java.
Where is ChannelPromiseNotifier defined?
ChannelPromiseNotifier is defined in transport/src/main/java/io/netty/channel/ChannelPromiseNotifier.java at line 25.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free