Interface WebSocketCreator

All Known Implementing Classes:
JavaxWebSocketCreator

public interface WebSocketCreator
Abstract WebSocket creator interface.

Should you desire filtering of the WebSocket object creation due to criteria such as origin or sub-protocol, then you will be required to implement a custom WebSocketCreator implementation.

  • Method Details

    • createWebSocket

      Object createWebSocket(ServerUpgradeRequest req, ServerUpgradeResponse resp)
      Create a websocket from the incoming request.
      Parameters:
      req - the request details
      resp - the response details
      Returns:
      a websocket object to use, or null if no websocket should be created from this request.