Searched refs:nextExecutionTime (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DTimerTask.java74 long nextExecutionTime; field in class:TimerTask
154 return (period < 0 ? nextExecutionTime + period
155 : nextExecutionTime - period);
H A DTimer.java403 task.nextExecutionTime = time;
539 executionTime = task.nextExecutionTime;
564 * ordered on nextExecutionTime. Each Timer object has one of these, which it
573 * ordered on the nextExecutionTime field: The TimerTask with the lowest
574 * nextExecutionTime is in queue[1] (assuming the queue is nonempty). For
576 * n.nextExecutionTime <= d.nextExecutionTime.
607 * task with the lowest nextExecutionTime.)
644 * Sets the nextExecutionTime associated with the head task to the
648 queue[1].nextExecutionTime
[all...]

Completed in 39 milliseconds