Package javax.net.ssl
Interface HandshakeCompletedListener
-
- All Superinterfaces:
EventListener
public interface HandshakeCompletedListener extends EventListener
The listener to be implemented to receive event notifications on completion of SSL handshake on an SSL connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandshakeCompleted(HandshakeCompletedEvent event)The callback method that is invoked when a SSL handshake is completed.
-
-
-
Method Detail
-
handshakeCompleted
void handshakeCompleted(HandshakeCompletedEvent event)
The callback method that is invoked when a SSL handshake is completed.- Parameters:
event- the information on the completed SSL handshake event.
-
-