failPendingConnectPromise() — netty Function Reference
Architecture documentation for the failPendingConnectPromise() function in QuicheQuicChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 71f869b5_f8a3_eeab_e61b_37fed86049e3["failPendingConnectPromise()"] 3c534d05_bb5b_c991_5e03_7ec94e739cf7["QuicheQuicChannel"] 71f869b5_f8a3_eeab_e61b_37fed86049e3 -->|defined in| 3c534d05_bb5b_c991_5e03_7ec94e739cf7 d09a66fb_105e_24b9_4756_bb03a3f780fa["doClose()"] d09a66fb_105e_24b9_4756_bb03a3f780fa -->|calls| 71f869b5_f8a3_eeab_e61b_37fed86049e3 style 71f869b5_f8a3_eeab_e61b_37fed86049e3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java lines 419–425
private void failPendingConnectPromise() {
ChannelPromise promise = QuicheQuicChannel.this.connectPromise;
if (promise != null) {
QuicheQuicChannel.this.connectPromise = null;
promise.tryFailure(new QuicClosedChannelException(this.connectionCloseEvent));
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does failPendingConnectPromise() do?
failPendingConnectPromise() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java.
Where is failPendingConnectPromise() defined?
failPendingConnectPromise() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java at line 419.
What calls failPendingConnectPromise()?
failPendingConnectPromise() is called by 1 function(s): doClose.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free