Home | History | Annotate | Download | only in testing

Lines Matching refs:TimerTask

24 import java.util.TimerTask;
85 public void schedule(TimerTask task, Date time) {
91 public void schedule(TimerTask task, Date firstTime, long period) {
96 public void schedule(TimerTask task, long delay) {
102 public void schedule(TimerTask task, long delay, long period) {
107 public void scheduleAtFixedRate(TimerTask task, Date firstTime, long period) {
112 public void scheduleAtFixedRate(TimerTask task, long delay, long period) {
116 public void scheduleAtTime(TimerTask task, long executeTime) {
129 public static class Task extends TimerTask {
133 private TimerTask mDelegate;
135 public Task(TimerTask delegate) {