QuicClosedChannelException Class — netty Architecture
Architecture documentation for the QuicClosedChannelException class in QuicClosedChannelException.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 47cfb75d_a2b0_8575_3f2e_399f8886196b["QuicClosedChannelException"] 132f522d_b62e_8462_12e4_d2a2915dadb6["QuicClosedChannelException.java"] 47cfb75d_a2b0_8575_3f2e_399f8886196b -->|defined in| 132f522d_b62e_8462_12e4_d2a2915dadb6 7a61e17a_a390_6252_3411_a17a3b42bcc0["QuicClosedChannelException()"] 47cfb75d_a2b0_8575_3f2e_399f8886196b -->|method| 7a61e17a_a390_6252_3411_a17a3b42bcc0 6028707c_2df8_5ef9_8968_139e7f2c0d64["QuicConnectionCloseEvent()"] 47cfb75d_a2b0_8575_3f2e_399f8886196b -->|method| 6028707c_2df8_5ef9_8968_139e7f2c0d64
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicClosedChannelException.java lines 26–43
public final class QuicClosedChannelException extends ClosedChannelException {
private final QuicConnectionCloseEvent event;
QuicClosedChannelException(@Nullable QuicConnectionCloseEvent event) {
this.event = event;
}
/**
* Returns the {@link QuicConnectionCloseEvent} that caused the closure or {@code null} if none was received.
*
* @return the event.
*/
@Nullable
public QuicConnectionCloseEvent event() {
return event;
}
}
Defined In
Source
Frequently Asked Questions
What is the QuicClosedChannelException class?
QuicClosedChannelException is a class in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicClosedChannelException.java.
Where is QuicClosedChannelException defined?
QuicClosedChannelException is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicClosedChannelException.java at line 26.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free