Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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