Interface JettyUpgradeListener
public interface JettyUpgradeListener
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidonHandshakeRequest(org.eclipse.jetty.client.Request request) Event that triggers before the Handshake request is sent.default voidonHandshakeResponse(org.eclipse.jetty.client.Request request, org.eclipse.jetty.client.Response response) Event that triggers after the Handshake response has been received.
-
Method Details
-
onHandshakeRequest
default void onHandshakeRequest(org.eclipse.jetty.client.Request request) Event that triggers before the Handshake request is sent.- Parameters:
request- the request
-
onHandshakeResponse
default void onHandshakeResponse(org.eclipse.jetty.client.Request request, org.eclipse.jetty.client.Response response) Event that triggers after the Handshake response has been received.- Parameters:
request- the request that was usedresponse- the response that was received
-