shutdownOutputDone() — netty Function Reference
Architecture documentation for the shutdownOutputDone() function in AbstractKQueueStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a5178868_81e6_43f7_a7a8_d2a9ecebd0a6["shutdownOutputDone()"] d154050d_32bb_fde7_fa64_5c82411c48d6["AbstractKQueueStreamChannel"] a5178868_81e6_43f7_a7a8_d2a9ecebd0a6 -->|defined in| d154050d_32bb_fde7_fa64_5c82411c48d6 dc045942_7616_6a71_bfc9_63f1ce9b36e9["ChannelFuture()"] dc045942_7616_6a71_bfc9_63f1ce9b36e9 -->|calls| a5178868_81e6_43f7_a7a8_d2a9ecebd0a6 e2a83b39_7f60_edfe_9453_963fc85840b9["shutdownDone()"] a5178868_81e6_43f7_a7a8_d2a9ecebd0a6 -->|calls| e2a83b39_7f60_edfe_9453_963fc85840b9 style a5178868_81e6_43f7_a7a8_d2a9ecebd0a6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/AbstractKQueueStreamChannel.java lines 473–485
private void shutdownOutputDone(final ChannelFuture shutdownOutputFuture, final ChannelPromise promise) {
ChannelFuture shutdownInputFuture = shutdownInput();
if (shutdownInputFuture.isDone()) {
shutdownDone(shutdownOutputFuture, shutdownInputFuture, promise);
} else {
shutdownInputFuture.addListener(new ChannelFutureListener() {
@Override
public void operationComplete(ChannelFuture shutdownInputFuture) throws Exception {
shutdownDone(shutdownOutputFuture, shutdownInputFuture, promise);
}
});
}
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does shutdownOutputDone() do?
shutdownOutputDone() is a function in the netty codebase, defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/AbstractKQueueStreamChannel.java.
Where is shutdownOutputDone() defined?
shutdownOutputDone() is defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/AbstractKQueueStreamChannel.java at line 473.
What does shutdownOutputDone() call?
shutdownOutputDone() calls 1 function(s): shutdownDone.
What calls shutdownOutputDone()?
shutdownOutputDone() is called by 1 function(s): ChannelFuture.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free