shutdownOutputDone() — netty Function Reference
Architecture documentation for the shutdownOutputDone() function in NioDomainSocketChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b1eb90f6_17df_415e_16cf_7f832305ae46["shutdownOutputDone()"] cfd0ddf4_54f6_2e2b_6078_ee84ec74aadf["NioDomainSocketChannel"] b1eb90f6_17df_415e_16cf_7f832305ae46 -->|defined in| cfd0ddf4_54f6_2e2b_6078_ee84ec74aadf 7924ce6e_7fc8_8654_f124_b154d0db8202["ChannelFuture()"] 7924ce6e_7fc8_8654_f124_b154d0db8202 -->|calls| b1eb90f6_17df_415e_16cf_7f832305ae46 12853805_3904_a6ce_1fa1_e8da7a111015["shutdownDone()"] b1eb90f6_17df_415e_16cf_7f832305ae46 -->|calls| 12853805_3904_a6ce_1fa1_e8da7a111015 style b1eb90f6_17df_415e_16cf_7f832305ae46 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/socket/nio/NioDomainSocketChannel.java lines 236–248
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
Calls
Called By
Source
Frequently Asked Questions
What does shutdownOutputDone() do?
shutdownOutputDone() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/socket/nio/NioDomainSocketChannel.java.
Where is shutdownOutputDone() defined?
shutdownOutputDone() is defined in transport/src/main/java/io/netty/channel/socket/nio/NioDomainSocketChannel.java at line 236.
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