pre review cleanup

This commit is contained in:
Ken Stevens 2019-12-01 16:51:01 -05:00
parent 3e8bdb835a
commit 959dba7611
5 changed files with 6 additions and 12 deletions

View File

@ -1,7 +0,0 @@
package ca.uhn.fhir.jpa.sched;
class NullScheduler extends BaseHapiScheduler {
public NullScheduler(String theThreadNamePrefix, AutowiringSpringBeanJobFactory theSpringBeanJobFactory) {
super(theThreadNamePrefix, theSpringBeanJobFactory);
}
}

View File

@ -1304,7 +1304,7 @@ public abstract class BaseTermReadSvcImpl implements ITermReadSvc, ApplicationCo
}
public void scheduleJob() {
// FIXME KHS what does this mean?
// TODO KHS what does this mean?
// Register scheduled job to pre-expand ValueSets
// In the future it would be great to make this a cluster-aware task somehow
ScheduledJobDefinition vsJobDefinition = new ScheduledJobDefinition();

View File

@ -260,7 +260,7 @@ public class TermDeferredStorageSvcImpl implements ITermDeferredStorageSvc {
@PostConstruct
public void scheduleJob() {
// FIXME KHS what does this mean?
// TODO KHS what does this mean?
// Register scheduled job to save deferred concepts
// In the future it would be great to make this a cluster-aware task somehow
ScheduledJobDefinition jobDefinition = new ScheduledJobDefinition();

View File

@ -150,7 +150,7 @@ public class TermReindexingSvcImpl implements ITermReindexingSvc {
@PostConstruct
public void scheduleJob() {
// FIXME KHS what does this mean?
// TODO KHS what does this mean?
// Register scheduled job to save deferred concepts
// In the future it would be great to make this a cluster-aware task somehow
ScheduledJobDefinition jobDefinition = new ScheduledJobDefinition();

View File

@ -22,9 +22,10 @@ package ca.uhn.fhir.jpa.model.sched;
import org.quartz.DisallowConcurrentExecution;
import org.quartz.Job;
import org.quartz.PersistJobDataAfterExecution;
@DisallowConcurrentExecution
// FIXME KHS need this?
// @PersistJobDataAfterExecution
// TODO KHS do we still need this?
@PersistJobDataAfterExecution
public interface HapiJob extends Job {
}