shutdownOutputDone() — netty Function Reference
Architecture documentation for the shutdownOutputDone() function in NioSocketChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 33c0bd19_b36d_b43a_fce5_8c02f07775d6["shutdownOutputDone()"] f2eb70be_1f76_3e54_0854_050839fa58d4["NioSocketChannel"] 33c0bd19_b36d_b43a_fce5_8c02f07775d6 -->|defined in| f2eb70be_1f76_3e54_0854_050839fa58d4 6e6cf3b0_1ae9_76f3_d17b_e1548690b2b2["ChannelFuture()"] 6e6cf3b0_1ae9_76f3_d17b_e1548690b2b2 -->|calls| 33c0bd19_b36d_b43a_fce5_8c02f07775d6 cbe9899a_a53e_0baf_8e7d_493a0898cc3c["shutdownDone()"] 33c0bd19_b36d_b43a_fce5_8c02f07775d6 -->|calls| cbe9899a_a53e_0baf_8e7d_493a0898cc3c style 33c0bd19_b36d_b43a_fce5_8c02f07775d6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java lines 244–256
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/NioSocketChannel.java.
Where is shutdownOutputDone() defined?
shutdownOutputDone() is defined in transport/src/main/java/io/netty/channel/socket/nio/NioSocketChannel.java at line 244.
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