MyTimerTask.java Source code

Java tutorial

Introduction

Here is the source code for MyTimerTask.java

Source

import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;

class MyTimerTask extends TimerTask {
    public void run() {
        System.out.println("Timer task executed.");
    }
}

public class Main {
    public static void main(String[] args) {

        TimerTask tasknew = new MyTimerTask();
        Timer timer = new Timer();

        timer.scheduleAtFixedRate(tasknew, new Date(), 1000);
    }

    public void run() {
        System.out.println("working at fixed rate");
    }
}