Skip to content

Instantly share code, notes, and snippets.

@shasisingh
Created August 15, 2023 16:48
Show Gist options
  • Save shasisingh/c25fc093570fa6b8a7a67f21777600fb to your computer and use it in GitHub Desktop.
Save shasisingh/c25fc093570fa6b8a7a67f21777600fb to your computer and use it in GitHub Desktop.
public static void main(String[] args) {
var task = new TimerTask() {
@Override
public void run() {
System.out.println("run some task");
}
};
var timeer = new Timer();
timeer.scheduleAtFixedRate(task, 10, 10);
}
@shasisingh
Copy link
Author

Timer based on pure java

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment