Package org.springframework.web.socket.sockjs.transport.session

Examples of org.springframework.web.socket.sockjs.transport.session.WebSocketServerSockJsSession.tryCloseWithSockJsTransportError()


    try {
      wsHandler = new SockJsWebSocketHandler(getServiceConfig(), wsHandler, sockJsSession);
      this.handshakeHandler.doHandshake(request, response, wsHandler, Collections.<String, Object>emptyMap());
    }
    catch (Throwable ex) {
      sockJsSession.tryCloseWithSockJsTransportError(ex, CloseStatus.SERVER_ERROR);
      throw new SockJsTransportFailureException("WebSocket handshake failure", wsSession.getId(), ex);
    }
  }

  // HandshakeHandler methods
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.