Skip to content

Instantly share code, notes, and snippets.

@Anmol-Singh-Jaggi
Last active May 30, 2020 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Anmol-Singh-Jaggi/07c9a4be06bf35cc6698d0812597be7c to your computer and use it in GitHub Desktop.
Save Anmol-Singh-Jaggi/07c9a4be06bf35cc6698d0812597be7c to your computer and use it in GitHub Desktop.
blog scheduler
@Override
void run()
{
while(true)
{
Thread.sleep(job.getNextExecutionTime() - currentTime());
job.execute();
job.setNextExecutionTime(currentTime() + job.getExecutionInterval());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment