Interface HandshakeHandler
- All Known Implementing Classes:
AbstractHandshakeHandler
,DefaultHandshakeHandler
,WebSocketTransportHandler
public interface HandshakeHandler
Contract for processing a WebSocket handshake request.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
doHandshake
(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) Initiate the handshake.
-
Method Details
-
doHandshake
boolean doHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) throws HandshakeFailureExceptionInitiate the handshake.- Parameters:
request
- the current requestresponse
- the current responsewsHandler
- the handler to process WebSocket messages; seePerConnectionWebSocketHandler
for providing a handler with per-connection lifecycle.attributes
- the attributes from the HTTP handshake to associate with the WebSocket session; the provided attributes are copied, the original map is not used.- Returns:
- whether the handshake negotiation was successful or not. In either case the response status, headers, and body will have been updated to reflect the result of the negotiation
- Throws:
HandshakeFailureException
- thrown when handshake processing failed to complete due to an internal, unrecoverable error, i.e. a server error as opposed to a failure to successfully negotiate the handshake.
-