org.apache.zookeeper.server.ZooKeeperServer.getInProcess()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(90)

本文整理了Java中org.apache.zookeeper.server.ZooKeeperServer.getInProcess()方法的一些代码示例,展示了ZooKeeperServer.getInProcess()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperServer.getInProcess()方法的具体详情如下:
包路径:org.apache.zookeeper.server.ZooKeeperServer
类名称:ZooKeeperServer
方法名:getInProcess

ZooKeeperServer.getInProcess介绍

暂无

代码示例

代码示例来源:origin: apache/zookeeper

/**
 * return the outstanding requests
 * in the queue, which havent been
 * processed yet
 */
public long getOutstandingRequests() {
  return getInProcess();
}

代码示例来源:origin: org.apache.zookeeper/zookeeper

/**
 * return the outstanding requests
 * in the queue, which havent been 
 * processed yet
 */
public long getOutstandingRequests() {
  return getInProcess();
}

代码示例来源:origin: apache/zookeeper

public boolean shouldThrottle(long outStandingCount) {
  if (getGlobalOutstandingLimit() < getInProcess()) {
    return outStandingCount > 0;
  }
  return false;
}

代码示例来源:origin: org.apache.zookeeper/zookeeper

public boolean shouldThrottle(long outStandingCount) {
  if (getGlobalOutstandingLimit() < getInProcess()) {
    return outStandingCount > 0;
  }
  return false; 
}

代码示例来源:origin: org.apache.zookeeper/zookeeper

protected void incrOutstandingRequests(RequestHeader h) {
  if (h.getXid() >= 0) {
    synchronized (this) {
      outstandingRequests++;
    }
    synchronized (this.factory) {        
      // check throttling
      if (zkServer.getInProcess() > outstandingLimit) {
        if (LOG.isDebugEnabled()) {
          LOG.debug("Throttling recv " + zkServer.getInProcess());
        }
        disableRecv();
        // following lines should not be needed since we are
        // already reading
        // } else {
        // enableRecv();
      }
    }
  }
}

代码示例来源:origin: org.apache.zookeeper/zookeeper

if (zkServer.getInProcess() < outstandingLimit
    || outstandingRequests < 1) {
  sk.selector().wakeup();

代码示例来源:origin: org.apache.hadoop/zookeeper

/**
 * return the outstanding requests
 * in the queue, which havent been 
 * processed yet
 */
public long getOutstandingRequests() {
  return getInProcess();
}

代码示例来源:origin: org.apache.hadoop/zookeeper

if (zk.getInProcess() < factory.outstandingLimit
    || outstandingRequests < 1) {
  sk.selector().wakeup();

代码示例来源:origin: org.apache.hadoop/zookeeper

if (zk.getInProcess() > factory.outstandingLimit) {
  if (LOG.isDebugEnabled()) {
    LOG.debug("Throttling recv " + zk.getInProcess());

相关文章

ZooKeeperServer类方法