Last active
October 13, 2015 19:47
-
-
Save ericacm/4246388 to your computer and use it in GitHub Desktop.
Sample scheduled job
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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