updatePriority0() — netty Function Reference
Architecture documentation for the updatePriority0() function in QuicheQuicStreamChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3b873a53_82c8_e713_2047_ad0e7a8552a1["updatePriority0()"] 12c209e0_2392_3384_a39f_2a0649fbd28b["QuicheQuicStreamChannel"] 3b873a53_82c8_e713_2047_ad0e7a8552a1 -->|defined in| 12c209e0_2392_3384_a39f_2a0649fbd28b e0d43b2d_1676_72b5_396d_ed0a9a98c114["ChannelFuture()"] e0d43b2d_1676_72b5_396d_ed0a9a98c114 -->|calls| 3b873a53_82c8_e713_2047_ad0e7a8552a1 d46e3d31_9ac9_1dec_c60f_c3c77a46395a["streamId()"] 3b873a53_82c8_e713_2047_ad0e7a8552a1 -->|calls| d46e3d31_9ac9_1dec_c60f_c3c77a46395a style 3b873a53_82c8_e713_2047_ad0e7a8552a1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java lines 138–151
private void updatePriority0(QuicStreamPriority priority, ChannelPromise promise) {
assert eventLoop().inEventLoop();
if (!promise.setUncancellable()) {
return;
}
try {
parent().streamPriority(streamId(), (byte) priority.urgency(), priority.isIncremental());
} catch (Throwable cause) {
promise.setFailure(cause);
return;
}
this.priority = priority;
promise.setSuccess();
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does updatePriority0() do?
updatePriority0() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java.
Where is updatePriority0() defined?
updatePriority0() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicStreamChannel.java at line 138.
What does updatePriority0() call?
updatePriority0() calls 1 function(s): streamId.
What calls updatePriority0()?
updatePriority0() 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