shutdownInput0() — netty Function Reference
Architecture documentation for the shutdownInput0() function in AbstractEpollStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4fb52cc9_a909_b415_031e_33609fb7ef94["shutdownInput0()"] 6ec314cd_b42f_72bd_344b_f54212398142["AbstractEpollStreamChannel"] 4fb52cc9_a909_b415_031e_33609fb7ef94 -->|defined in| 6ec314cd_b42f_72bd_344b_f54212398142 5a972d14_e636_b2d4_6755_e61146b73433["ChannelFuture()"] 5a972d14_e636_b2d4_6755_e61146b73433 -->|calls| 4fb52cc9_a909_b415_031e_33609fb7ef94 style 4fb52cc9_a909_b415_031e_33609fb7ef94 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollStreamChannel.java lines 544–551
private void shutdownInput0(final ChannelPromise promise) {
try {
socket.shutdown(true, false);
promise.setSuccess();
} catch (Throwable cause) {
promise.setFailure(cause);
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does shutdownInput0() do?
shutdownInput0() is a function in the netty codebase, defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollStreamChannel.java.
Where is shutdownInput0() defined?
shutdownInput0() is defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollStreamChannel.java at line 544.
What calls shutdownInput0()?
shutdownInput0() 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