Skip to content

Instantly share code, notes, and snippets.

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/55f15a0d790d9d74a09798f939e21e50 to your computer and use it in GitHub Desktop.
Save Anmol-Singh-Jaggi/55f15a0d790d9d74a09798f939e21e50 to your computer and use it in GitHub Desktop.
Blog scheduler
@Override
void run()
{
while(true)
{
newJob = getNewJobFromCrontabFile() // blocking call
JobThread newJobThread = new JobThread(newJob);
newJobThread.start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment