Class NoopTransportObserver.NoopSecurityHandshakeObserver
java.lang.Object
io.servicetalk.transport.netty.internal.NoopTransportObserver.NoopSecurityHandshakeObserver
- All Implemented Interfaces:
ConnectionObserver.SecurityHandshakeObserver
- Enclosing class:
- NoopTransportObserver
public static final class NoopTransportObserver.NoopSecurityHandshakeObserver
extends Object
implements ConnectionObserver.SecurityHandshakeObserver
Noop version of
ConnectionObserver.SecurityHandshakeObserver
.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
handshakeComplete
(SSLSession sslSession) Callback when the handshake is complete successfully.void
handshakeFailed
(Throwable cause) Callback when the handshake is failed.
-
Field Details
-
INSTANCE
-
-
Method Details
-
handshakeFailed
Description copied from interface:ConnectionObserver.SecurityHandshakeObserver
Callback when the handshake is failed.- Specified by:
handshakeFailed
in interfaceConnectionObserver.SecurityHandshakeObserver
- Parameters:
cause
- the cause of handshake failure
-
handshakeComplete
Description copied from interface:ConnectionObserver.SecurityHandshakeObserver
Callback when the handshake is complete successfully.- Specified by:
handshakeComplete
in interfaceConnectionObserver.SecurityHandshakeObserver
- Parameters:
sslSession
- theSSLSession
for this connection
-