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 SummaryModifier and TypeMethodDescriptionbooleandoHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) Initiate the handshake.
- 
Method Details- 
doHandshakeboolean doHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) throws HandshakeFailureExceptionInitiate the handshake.- Parameters:
- request- the current request
- response- the current response
- wsHandler- the handler to process WebSocket messages; see- PerConnectionWebSocketHandlerfor 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.
 
 
-