Lines Matching refs:tick

35     it calls the owner's tick() method.
41 public void tick(Timer timer) {
42 System.out.println("tick");
52 owner's tick() method.
56 how long the owner's tick() method takes. While the timer
58 the owner's tick() method takes longer than the interval,
62 the specified interval only after the tick() method returns.
85 takes on that priority before calling the owner's tick() method.
90 * This is the owner of the timer. Its tick method is
106 * should tick.
113 * continued, the next tick will happen remaingTime
184 * Note that even after stopping a timer, one more tick may
206 * Continue the timer. The next tick will come at getRemainingTime()
261 * does not take effect until after the next tick.
271 * Returns the remaining time before the timer's next tick.
279 * Sets the remaining time before the timer's next tick.
302 * regardless of how long the owner's tick() method takes.
304 * That means that if the owner's tick() method takes longer
309 * the specified interval only after the tick() method returns.
331 A timer in the timer queue is awaiting a tick. When a timer is to be
332 ticked, it is removed from the timer queue before the owner's tick()
337 the timer to tick. When the time comes, the timer thread creates a
338 callback thread to call the timer owner's tick() method. The timer
399 System.out.println("tick(" + thr.getName() + ","
414 * The timer queue is a queue of timers waiting to tick.
506 * timer owner's tick() method. This method recomputes
529 timer owner's tick() method. A small fixed-sized pool of threads is
563 * tick() method will be called.
577 * tick() method. A thread is taken from the pool if one
637 timer.owner.tick(timer);