All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.litongjava.tio.server.ServerGroupStat Maven / Gradle / Ivy

There is a newer version: 3.7.3.v20241201-RELEASE
Show newest version
package com.litongjava.tio.server;

import java.util.concurrent.atomic.AtomicLong;

import com.litongjava.tio.core.stat.GroupStat;

/**
 *
 * @author tanyaowu
 *
 */
public class ServerGroupStat extends GroupStat {

  private static final long serialVersionUID = -139100692961946342L;
  /**
   * 接受了多少连接
   */
  public final AtomicLong accepted = new AtomicLong();

  /**
   *
   *
   * @author tanyaowu
   * 2016年12月3日 下午2:29:28
   *
   */
  public ServerGroupStat() {
  }

  /**
   * @return the accepted
   */
  public AtomicLong getAccepted() {
    return accepted;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy