Package io.netty.handler.ssl
Class SslCloseCompletionEvent
java.lang.Object
io.netty.handler.ssl.SslCompletionEvent
io.netty.handler.ssl.SslCloseCompletionEvent
Event that is fired once the close_notify was received or if an failure happens before it was received.
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Creates a new event that indicates a successful receiving of close_notify.SslCloseCompletionEvent
(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 Details
-
SUCCESS
-
-
Constructor Details
-
SslCloseCompletionEvent
private SslCloseCompletionEvent()Creates a new event that indicates a successful receiving of close_notify. -
SslCloseCompletionEvent
Creates a new event that indicates an close_notify was not received because of an previous error. UseSUCCESS
to indicate a success.
-