shutdownInput0() — netty Function Reference
Architecture documentation for the shutdownInput0() function in QuicheQuicStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33["shutdownInput0()"] 12c209e0_2392_3384_a39f_2a0649fbd28b["QuicheQuicStreamChannel"] cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33 -->|defined in| 12c209e0_2392_3384_a39f_2a0649fbd28b e0d43b2d_1676_72b5_396d_ed0a9a98c114["ChannelFuture()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33 d46e3d31_9ac9_1dec_c60f_c3c77a46395a["streamId()"] cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33 -->|calls| d46e3d31_9ac9_1dec_c60f_c3c77a46395a 860d77ee_151e_f1cf_829e_15a8d2aac53c["closeIfDone()"] cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33 -->|calls| 860d77ee_151e_f1cf_829e_15a8d2aac53c style cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java lines 203–211
private void shutdownInput0(int err, ChannelPromise channelPromise) {
assert eventLoop().inEventLoop();
if (!channelPromise.setUncancellable()) {
return;
}
inputShutdown = true;
parent().streamShutdown(streamId(), true, false, err, channelPromise);
closeIfDone();
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does shutdownInput0() do?
shutdownInput0() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java.
Where is shutdownInput0() defined?
shutdownInput0() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java at line 203.
What does shutdownInput0() call?
shutdownInput0() calls 2 function(s): closeIfDone, streamId.
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