Skip to content

Instantly share code, notes, and snippets.

View RobinCheptileh's full-sized avatar
🐎
Stallion

Robin Cheptileh RobinCheptileh

🐎
Stallion
  • Barcelona, Spain
View GitHub Profile
@RobinCheptileh
RobinCheptileh / TimerTask.java
Created July 22, 2018 13:49
A simple java class demonstrating how to use a Java Timer
import java.util.Timer;
import java.util.TimerTask;
public class Main {
public static void main(String[] args) {
// Instantiate new timer
Timer timer = new Timer(true);
System.out.println("Timer started!");
// Schedule a timer for every second