ChannelFuture() — netty Function Reference
Architecture documentation for the ChannelFuture() function in QuicheQuicStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD e0d43b2d_1676_72b5_396d_ed0a9a98c114["ChannelFuture()"] 12c209e0_2392_3384_a39f_2a0649fbd28b["QuicheQuicStreamChannel"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|defined in| 12c209e0_2392_3384_a39f_2a0649fbd28b 3b873a53_82c8_e713_2047_ad0e7a8552a1["updatePriority0()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| 3b873a53_82c8_e713_2047_ad0e7a8552a1 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50["shutdownOutput0()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| 1bfd22cf_ed33_9f74_5cb7_ed0890bb6f50 cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33["shutdownInput0()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| cd8a53eb_7dc1_31ac_4939_0f5c40d1fe33 b8f0fcf4_c9ba_7fd0_650b_cbfb08e968b3["shutdown0()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| b8f0fcf4_c9ba_7fd0_650b_cbfb08e968b3 style e0d43b2d_1676_72b5_396d_ed0a9a98c114 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java lines 128–136
@Override
public ChannelFuture updatePriority(QuicStreamPriority priority, ChannelPromise promise) {
if (eventLoop().inEventLoop()) {
updatePriority0(priority, promise);
} else {
eventLoop().execute(() -> updatePriority0(priority, promise));
}
return promise;
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does ChannelFuture() do?
ChannelFuture() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java.
Where is ChannelFuture() defined?
ChannelFuture() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java at line 128.
What does ChannelFuture() call?
ChannelFuture() calls 4 function(s): shutdown0, shutdownInput0, shutdownOutput0, updatePriority0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free