当前位置: 首页>>代码示例>>Java>>正文


Java Status.getNumber方法代码示例

本文整理汇总了Java中org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status.getNumber方法的典型用法代码示例。如果您正苦于以下问题:Java Status.getNumber方法的具体用法?Java Status.getNumber怎么用?Java Status.getNumber使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status的用法示例。


在下文中一共展示了Status.getNumber方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getOOBStatus

import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status; //导入方法依赖的package包/类
/**
 * Returns the OOB status if this ack contains one. 
 * @return null if it is not an OOB ack.
 */
public Status getOOBStatus() {
  // Normal data transfer acks will have a valid sequence number, so
  // this will return right away in most cases.
  if (getSeqno() != UNKOWN_SEQNO) {
    return null;
  }
  for (Status s : proto.getReplyList()) {
    // The following check is valid because protobuf guarantees to
    // preserve the ordering of enum elements.
    if (s.getNumber() >= OOB_START && s.getNumber() <= OOB_END) {
      return s;
    }
  }
  return null;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:20,代码来源:PipelineAck.java

示例2: getOOBStatus

import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status; //导入方法依赖的package包/类
/**
 * Returns the OOB status if this ack contains one.
 * @return null if it is not an OOB ack.
 */
public Status getOOBStatus() {
  // Normal data transfer acks will have a valid sequence number, so
  // this will return right away in most cases.
  if (getSeqno() != UNKOWN_SEQNO) {
    return null;
  }
  for (Status s : proto.getReplyList()) {
    // The following check is valid because protobuf guarantees to
    // preserve the ordering of enum elements.
    if (s.getNumber() >= OOB_START && s.getNumber() <= OOB_END) {
      return s;
    }
  }
  return null;
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:20,代码来源:PipelineAck.java

示例3: getOOBStatus

import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status; //导入方法依赖的package包/类
/**
 * Returns the OOB status if this ack contains one. 
 * @return null if it is not an OOB ack.
 */
public Status getOOBStatus() {
  // Normal data transfer acks will have a valid sequence number, so
  // this will return right away in most cases.
  if (getSeqno() != UNKOWN_SEQNO) {
    return null;
  }
  for (Status reply : proto.getStatusList()) {
    // The following check is valid because protobuf guarantees to
    // preserve the ordering of enum elements.
    if (reply.getNumber() >= OOB_START && reply.getNumber() <= OOB_END) {
      return reply;
    }
  }
  return null;
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:20,代码来源:PipelineAck.java

示例4: getOOBTimeout

import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status; //导入方法依赖的package包/类
/**
 * Get the timeout to be used for transmitting the OOB type
 * @return the timeout in milliseconds
 */
public static long getOOBTimeout(Status status) throws IOException {
  int index = status.getNumber() - OOB_START;
  if (index >= 0 && index < NUM_OOB_TYPES) {
    return OOB_TIMEOUT[index];
  } 
  // Not an OOB.
  throw new IOException("Not an OOB status: " + status);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:13,代码来源:PipelineAck.java

示例5: getOOBTimeout

import org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status; //导入方法依赖的package包/类
/**
 * Get the timeout to be used for transmitting the OOB type
 * @return the timeout in milliseconds
 */
public long getOOBTimeout(Status status)
    throws IOException {
  if (status.getNumber() < Status.OOB_RESTART_VALUE ||
      status.getNumber() > Status.OOB_RESERVED3_VALUE) {
    // Not an OOB.
    throw new IOException("Not an OOB status: " + status);
  }

  return oobTimeouts[status.getNumber() - Status.OOB_RESTART_VALUE];
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:15,代码来源:DataNode.java


注:本文中的org.apache.hadoop.hdfs.protocol.proto.DataTransferProtos.Status.getNumber方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。