shutdownOutput0() — netty Function Reference
Architecture documentation for the shutdownOutput0() function in QuicheQuicStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50["shutdownOutput0()"] 12c209e0_2392_3384_a39f_2a0649fbd28b["QuicheQuicStreamChannel"] 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 -->|defined in| 12c209e0_2392_3384_a39f_2a0649fbd28b e0d43b2d_1676_72b5_396d_ed0a9a98c114["ChannelFuture()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 c225604c_2de8_fe76_73d8_f8ebd8b0d632["writeWithoutCheckChannelState()"] 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 -->|calls| c225604c_2de8_fe76_73d8_f8ebd8b0d632 18d5c15c_2e0f_33e1_147e_c76d087fc65b["flush()"] 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 -->|calls| 18d5c15c_2e0f_33e1_147e_c76d087fc65b d46e3d31_9ac9_1dec_c60f_c3c77a46395a["streamId()"] 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 -->|calls| d46e3d31_9ac9_1dec_c60f_c3c77a46395a 860d77ee_151e_f1cf_829e_15a8d2aac53c["closeIfDone()"] 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 -->|calls| 860d77ee_151e_f1cf_829e_15a8d2aac53c style 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java lines 168–176
private void shutdownOutput0(ChannelPromise promise) {
assert eventLoop().inEventLoop();
if (!promise.setUncancellable()) {
return;
}
outputShutdown = true;
unsafe.writeWithoutCheckChannelState(QuicStreamFrame.EMPTY_FIN, promise);
unsafe.flush();
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does shutdownOutput0() do?
shutdownOutput0() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java.
Where is shutdownOutput0() defined?
shutdownOutput0() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java at line 168.
What does shutdownOutput0() call?
shutdownOutput0() calls 4 function(s): closeIfDone, flush, streamId, writeWithoutCheckChannelState.
What calls shutdownOutput0()?
shutdownOutput0() 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