3 changed files with 25 additions and 0 deletions
@ -0,0 +1,15 @@
|
||||
package org.leolo.nrdatad.cron; |
||||
|
||||
import org.apache.logging.log4j.LogManager; |
||||
import org.apache.logging.log4j.Logger; |
||||
import org.quartz.Job; |
||||
import org.quartz.JobExecutionContext; |
||||
import org.quartz.JobExecutionException; |
||||
|
||||
public class ScheduleImportJob implements Job { |
||||
Logger log = LogManager.getLogger(); |
||||
@Override |
||||
public void execute(JobExecutionContext context) throws JobExecutionException { |
||||
log.atInfo().log("Loading schedule from SCHEDULE stream"); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue