Package io.netty.handler.ssl
Class SslCloseCompletionEvent
- java.lang.Object
-
- io.netty.handler.ssl.SslCompletionEvent
-
- io.netty.handler.ssl.SslCloseCompletionEvent
-
public final class SslCloseCompletionEvent extends SslCompletionEvent
Event that is fired once the close_notify was received or if an failure happens before it was received.
-
-
Field Summary
Fields Modifier and Type Field Description static SslCloseCompletionEvent
SUCCESS
-
Constructor Summary
Constructors Constructor Description SslCloseCompletionEvent(java.lang.Throwable cause)
Creates a new event that indicates an close_notify was not received because of an previous error.
-
Method Summary
-
Methods inherited from class io.netty.handler.ssl.SslCompletionEvent
cause, isSuccess, toString
-
-
-
-
Field Detail
-
SUCCESS
public static final SslCloseCompletionEvent SUCCESS
-
-
Constructor Detail
-
SslCloseCompletionEvent
public SslCloseCompletionEvent(java.lang.Throwable cause)
Creates a new event that indicates an close_notify was not received because of an previous error. UseSUCCESS
to indicate a success.
-
-