Package io.netty.handler.ssl
Class SslHandshakeCompletionEvent
- java.lang.Object
-
- io.netty.handler.ssl.SslCompletionEvent
-
- io.netty.handler.ssl.SslHandshakeCompletionEvent
-
public final class SslHandshakeCompletionEvent extends SslCompletionEvent
Event that is fired once the SSL handshake is complete, which may be because it was successful or there was an error.
-
-
Field Summary
Fields Modifier and Type Field Description static SslHandshakeCompletionEvent
SUCCESS
-
Constructor Summary
Constructors Constructor Description SslHandshakeCompletionEvent(java.lang.Throwable cause)
Creates a new event that indicates an unsuccessful handshake.
-
Method Summary
-
Methods inherited from class io.netty.handler.ssl.SslCompletionEvent
cause, isSuccess, toString
-
-
-
-
Field Detail
-
SUCCESS
public static final SslHandshakeCompletionEvent SUCCESS
-
-
Constructor Detail
-
SslHandshakeCompletionEvent
public SslHandshakeCompletionEvent(java.lang.Throwable cause)
Creates a new event that indicates an unsuccessful handshake. UseSUCCESS
to indicate a successful handshake.
-
-