Examples of afterHandshake()


Examples of org.springframework.web.socket.server.HandshakeInterceptor.afterHandshake()

  public void applyAfterHandshake(ServerHttpRequest request, ServerHttpResponse response, Exception failure) {
    for (int i = this.interceptorIndex; i >= 0; i--) {
      HandshakeInterceptor interceptor = this.interceptors.get(i);
      try {
        interceptor.afterHandshake(request, response, this.wsHandler, failure);
      }
      catch (Throwable ex) {
        if (logger.isWarnEnabled()) {
          logger.warn(interceptor + " threw exception in afterHandshake: " + ex);
        }
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.