Package org.auto.comet

Examples of org.auto.comet.SocketManager.startTimer()


  }

  protected void initSocketManager(CometConfigMetadata cometConfig)
      throws ServletException {
    SocketManager socketManager = creatSocketManager();
    socketManager.startTimer();
    Integer timeout = cometConfig.getTimeout();
    if (null != timeout) {
      long asyncTimeout = (long) (60000l * timeout);
      socketManager.setAsyncTimeout(asyncTimeout);
    }
 
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.