Home | History | Annotate | Download | only in metric

Lines Matching defs:timer

21 import java.util.Timer;
42 private Timer timer;
48 timer = new Timer();
56 timer.cancel();
65 timer.scheduleAtFixedRate(timerTask, 0, mIntervalMs);
67 timer.schedule(timerTask, 0, mIntervalMs);
73 if (timer != null) {
74 timer.cancel();
75 timer.purge();