Home / Class/ SslHandshakeCompletionEvent Class — netty Architecture

SslHandshakeCompletionEvent Class — netty Architecture

Architecture documentation for the SslHandshakeCompletionEvent class in SslHandshakeCompletionEvent.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  92daf398_c809_7e59_ec2f_96752d471c01["SslHandshakeCompletionEvent"]
  9e91801a_1d79_be40_3bda_6e1a1ca378ac["SslHandshakeCompletionEvent.java"]
  92daf398_c809_7e59_ec2f_96752d471c01 -->|defined in| 9e91801a_1d79_be40_3bda_6e1a1ca378ac
  9ff8a12b_a2d9_4498_dbc9_f994ca565f24["SslHandshakeCompletionEvent()"]
  92daf398_c809_7e59_ec2f_96752d471c01 -->|method| 9ff8a12b_a2d9_4498_dbc9_f994ca565f24

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslHandshakeCompletionEvent.java lines 23–39

public final class SslHandshakeCompletionEvent extends SslCompletionEvent {

    public static final SslHandshakeCompletionEvent SUCCESS = new SslHandshakeCompletionEvent();

    /**
     * Creates a new event that indicates a successful handshake.
     */
    private SslHandshakeCompletionEvent() { }

    /**
     * Creates a new event that indicates an unsuccessful handshake.
     * Use {@link #SUCCESS} to indicate a successful handshake.
     */
    public SslHandshakeCompletionEvent(Throwable cause) {
        super(cause);
    }
}

Frequently Asked Questions

What is the SslHandshakeCompletionEvent class?
SslHandshakeCompletionEvent is a class in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslHandshakeCompletionEvent.java.
Where is SslHandshakeCompletionEvent defined?
SslHandshakeCompletionEvent is defined in handler/src/main/java/io/netty/handler/ssl/SslHandshakeCompletionEvent.java at line 23.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free