shutdownInput0() — netty Function Reference
Architecture documentation for the shutdownInput0() function in AbstractIoUringStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD afa2a64f_bce2_9d2e_e215_d073c187a276["shutdownInput0()"] e0084bc2_202c_2cf9_b167_f5ee8ec96f9b["AbstractIoUringStreamChannel"] afa2a64f_bce2_9d2e_e215_d073c187a276 -->|defined in| e0084bc2_202c_2cf9_b167_f5ee8ec96f9b 8da473da_eef9_89a8_c578_c4589756d46d["ChannelFuture()"] 8da473da_eef9_89a8_c578_c4589756d46d -->|calls| afa2a64f_bce2_9d2e_e215_d073c187a276 style afa2a64f_bce2_9d2e_e215_d073c187a276 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringStreamChannel.java lines 97–104
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-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringStreamChannel.java.
Where is shutdownInput0() defined?
shutdownInput0() is defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringStreamChannel.java at line 97.
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