Skip to content

Instantly share code, notes, and snippets.

@ericacm
Last active October 13, 2015 19:47
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 ericacm/4246388 to your computer and use it in GitHub Desktop.
Save ericacm/4246388 to your computer and use it in GitHub Desktop.
Sample scheduled job
@Value("${deliveryService.distributeSchedule:0,30 * * * * *}")
var distributeSchedule: String = _
schedulerService.addJob(
SchedulerJob("distributeEvents", () => scheduledDistribute(), distributeSchedule))
def scheduledDistribute() =
if (clusterService.clusterStatus.isLeader)
distribute()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment