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


Java State.equals方法代码示例

本文整理汇总了Java中java.lang.Thread.State.equals方法的典型用法代码示例。如果您正苦于以下问题:Java State.equals方法的具体用法?Java State.equals怎么用?Java State.equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.lang.Thread.State的用法示例。


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

示例1: sendOutofBandHeartBeat

import java.lang.Thread.State; //导入方法依赖的package包/类
/**
 * This is to avoid race condition in the test case. NodeStatusUpdater
 * heartbeat thread after sending the heartbeat needs some time to process the
 * response and then go wait state. But in the test case once the main test
 * thread returns back after resourceTracker.waitTillHeartbeat() we proceed
 * with next sendOutofBandHeartBeat before heartbeat thread is blocked on
 * wait.
 * @throws InterruptedException
 * @throws IOException
 */
private void sendOutofBandHeartBeat()
    throws InterruptedException, IOException {
  int i = 0;
  do {
    State statusUpdaterThreadState = ((NodeStatusUpdaterImpl) nm.getNodeStatusUpdater())
        .getStatusUpdaterThreadState();
    if (statusUpdaterThreadState.equals(Thread.State.TIMED_WAITING)
        || statusUpdaterThreadState.equals(Thread.State.WAITING)) {
      nm.getNodeStatusUpdater().sendOutofBandHeartBeat();
      break;
    }
    if (++i <= 10) {
      Thread.sleep(50);
    } else {
      throw new IOException(
          "Waited for 500 ms but NodeStatusUpdaterThread not in waiting state");
    }
  } while (true);
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:30,代码来源:TestNodeStatusUpdaterForLabels.java


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