Package org.auto.comet.listener

Examples of org.auto.comet.listener.SocketEvent


  /**
   * 触发真正关闭连接事件
   * */
  protected void fireReallyClose() {
    SocketEvent event = new SocketEvent(this);
    for (SocketListener listener : listeners) {
      listener.onReallyClose(event);
    }
  }
View Full Code Here

TOP

Related Classes of org.auto.comet.listener.SocketEvent

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.