Timer.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /*
  2.  * Timer.java
  3.  * Copyright (C) 1999 dog <dog@dog.net.uk>
  4.  * 
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  * 
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  * 
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  * 
  19.  * You may retrieve the latest version of this library from
  20.  * http://www.dog.net.uk/knife/
  21.  */
  22. package dog.util;
  23. /**
  24.  * A timer class that wakes up listeners after a specified number of milliseconds.
  25.  *
  26.  * @author dog@dog.net.uk
  27.  * @version 1.0
  28.  */
  29. public final class Timer extends Thread {
  30. long time;
  31. long interval = 0;
  32. TimerListener listener;
  33. /**
  34.  * Constructs a timer.
  35.  */
  36. public Timer(TimerListener listener) {
  37. this(listener, 0, false);
  38. }
  39. /**
  40.  * Constructs a timer with the specified interval, and starts it.
  41.  */
  42. public Timer(TimerListener listener, long interval) {
  43. this(listener, interval, true);
  44. }
  45. /**
  46.  * Constructs a timer with the specified interval, indicating whether or not to start it.
  47.  */
  48. public Timer(TimerListener listener, long interval, boolean start) {
  49. this.listener = listener;
  50. this.interval = interval;
  51. time = System.currentTimeMillis();
  52. setDaemon(true);
  53. setPriority(Thread.MIN_PRIORITY);
  54. if (start)
  55. start();
  56. }
  57. // -- Accessor methods --
  58. /**
  59.  * Returns this timer's interval.
  60.  */
  61. public long getInterval() {
  62. return interval;
  63. }
  64. /**
  65.  * Sets this timer's interval.
  66.  */
  67. public void setInterval(long interval) {
  68. this.interval = interval;
  69. }
  70. /**
  71.  * Runs this timer.
  72.  */
  73. public void run() {
  74. boolean interrupt = false;
  75. while (!interrupt) {
  76. synchronized (this) {
  77. try {
  78. wait(interval);
  79. } catch (InterruptedException e) {
  80. interrupt = true;
  81. }
  82. listener.timerFired(new TimerEvent(this, interval));
  83. }
  84. }
  85. }
  86. }