- java.lang.Object
-
- io.netty5.handler.ssl.SslCompletionEvent
-
- All Implemented Interfaces:
io.netty5.handler.codec.ProtocolEvent
- Direct Known Subclasses:
SniCompletionEvent
,SslCloseCompletionEvent
,SslHandshakeCompletionEvent
public abstract class SslCompletionEvent extends Object implements io.netty5.handler.codec.ProtocolEvent
AProtocolEvent
for a completed SSL related event.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
cause()
SSLSession
session()
Returns theSSLSession
ornull
if none existed yet.String
toString()
-
-
-
Method Detail
-
cause
public final Throwable cause()
- Specified by:
cause
in interfaceio.netty5.handler.codec.ProtocolEvent
-
session
public SSLSession session()
Returns theSSLSession
ornull
if none existed yet.- Returns:
- the session.
-
-