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


Java TimerTask.scheduledExecutionTime方法代码示例

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


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

示例1: callAddTask

import rice.selector.TimerTask; //导入方法依赖的package包/类
private void callAddTask(TimerTask task) {
    if (LOG.isDebugEnabled())
        LOG.debug(String.format("addTask(%s)", task));
    if (!piTimerQueue.add(task)) {
        LOG.error("ERROR: Got false while enqueueing task " + task + "!");
    } else {

        task.setSelectorManager(this);
    }

    // need to interrupt thread if waiting too long in selector
    if (select) {
        // using the network
        if (wakeupTime >= task.scheduledExecutionTime()) {
            // we need to wake up the selector because it's going to sleep too long
            wakeup();
        }
    } else {
        // using the simulator
        if (task.scheduledExecutionTime() == getNextTaskExecutionTime()) {
            // we need to wake up the selector because we are now the newest
            // shortest wait, and may be delaying because of a later event
            wakeup();
        }
    }
}
 
开发者ID:barnyard,项目名称:pi,代码行数:27,代码来源:PiSelectorManager.java

示例2: addTask

import rice.selector.TimerTask; //导入方法依赖的package包/类
@Override
  protected synchronized void addTask(TimerTask task) {
    long now = timeSource.currentTimeMillis();
    if ((task.scheduledExecutionTime() < now) && (timeSource instanceof DirectTimeSource)) {
//      task.setNextExecutionTime(now);
      if (logger.level <= Logger.WARNING) logger.logException("Can't schedule a task in the past. "+task+" now:"+now+" task.execTime:"+task.scheduledExecutionTime(), new Exception("Stack Trace"));
      throw new RuntimeException("Can't schedule a task in the past.");
    }
    super.addTask(task);
  }
 
开发者ID:barnyard,项目名称:pi,代码行数:11,代码来源:RecordSM.java

示例3: getNextTaskExecutionTime

import rice.selector.TimerTask; //导入方法依赖的package包/类
@Override
public long getNextTaskExecutionTime() {
    if (piTimerQueue.size() > 0) {
        TimerTask next = (TimerTask) piTimerQueue.peek();
        return next.scheduledExecutionTime();
    }
    return -1;
}
 
开发者ID:barnyard,项目名称:pi,代码行数:9,代码来源:PiSelectorManager.java


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