fireExceptionEvents() — netty Function Reference
Architecture documentation for the fireExceptionEvents() function in QuicheQuicChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD df3e43f0_4607_0b84_f830_a8655804f40e["fireExceptionEvents()"] 3c534d05_bb5b_c991_5e03_7ec94e739cf7["QuicheQuicChannel"] df3e43f0_4607_0b84_f830_a8655804f40e -->|defined in| 3c534d05_bb5b_c991_5e03_7ec94e739cf7 9f9da465_f345_60be_84db_446a37063039["SendResult()"] 9f9da465_f345_60be_84db_446a37063039 -->|calls| df3e43f0_4607_0b84_f830_a8655804f40e c4a3c3a8_c9a0_f1c5_a6e4_d976b89450ea["connectionRecv()"] c4a3c3a8_c9a0_f1c5_a6e4_d976b89450ea -->|calls| df3e43f0_4607_0b84_f830_a8655804f40e 964a3852_b3e7_b070_9305_753cc91a1758["notifyAboutHandshakeCompletionIfNeeded()"] df3e43f0_4607_0b84_f830_a8655804f40e -->|calls| 964a3852_b3e7_b070_9305_753cc91a1758 style df3e43f0_4607_0b84_f830_a8655804f40e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java lines 1160–1165
private void fireExceptionEvents(QuicheQuicConnection conn, Throwable cause) {
if (cause instanceof SSLHandshakeException) {
notifyAboutHandshakeCompletionIfNeeded(conn, (SSLHandshakeException) cause);
}
pipeline().fireExceptionCaught(cause);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does fireExceptionEvents() do?
fireExceptionEvents() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java.
Where is fireExceptionEvents() defined?
fireExceptionEvents() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java at line 1160.
What does fireExceptionEvents() call?
fireExceptionEvents() calls 1 function(s): notifyAboutHandshakeCompletionIfNeeded.
What calls fireExceptionEvents()?
fireExceptionEvents() is called by 2 function(s): SendResult, connectionRecv.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free