Package org.springframework.web.socket.handler

Examples of org.springframework.web.socket.handler.ConcurrentWebSocketSessionDecorator


  }

  @Override
  public void afterConnectionEstablished(WebSocketSession session) throws Exception {
    this.stats.incrementSessionCount(session);
    session = new ConcurrentWebSocketSessionDecorator(session, getSendTimeLimit(), getSendBufferSizeLimit());
    this.sessions.put(session.getId(), new WebSocketSessionHolder(session));
    findProtocolHandler(session).afterSessionStarted(session, this.clientInboundChannel);
  }
View Full Code Here

TOP

Related Classes of org.springframework.web.socket.handler.ConcurrentWebSocketSessionDecorator

Copyright © 2018 www.massapicom. 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.