Home / Class/ SslCloseCompletionEvent Class — netty Architecture

SslCloseCompletionEvent Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  af61a2c8_8570_99c1_a3b3_6f50974eb550["SslCloseCompletionEvent"]
  2b41324d_5423_afa1_5ce4_8289c37c2af0["SslCloseCompletionEvent.java"]
  af61a2c8_8570_99c1_a3b3_6f50974eb550 -->|defined in| 2b41324d_5423_afa1_5ce4_8289c37c2af0
  0ea3e17e_82d5_5b33_e560_806171cb6cef["SslCloseCompletionEvent()"]
  af61a2c8_8570_99c1_a3b3_6f50974eb550 -->|method| 0ea3e17e_82d5_5b33_e560_806171cb6cef

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslCloseCompletionEvent.java lines 21–37

public final class SslCloseCompletionEvent extends SslCompletionEvent {

    public static final SslCloseCompletionEvent SUCCESS = new SslCloseCompletionEvent();

    /**
     * Creates a new event that indicates a successful receiving of close_notify.
     */
    private SslCloseCompletionEvent() { }

    /**
     * Creates a new event that indicates an close_notify was not received because of an previous error.
     * Use {@link #SUCCESS} to indicate a success.
     */
    public SslCloseCompletionEvent(Throwable cause) {
        super(cause);
    }
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free