I have these methods in Java which should run every Hour for example:
public static void main(String[] args) throws Exception{
readLog(); // method to read log file
sortByDate(); //sort punch in data by day
checkPeopleIn(); // check people who are in, add and remove to list accordingly
output_details(); //output final details
System.out.print("_____________________________________");
}
How would I add this functionality to this program? In Processing I used to use millis() method to create a timer, but I cannot find the equivalent.... Is it available?
Thanks in advance