pre review cleanup
This commit is contained in:
parent
3e8bdb835a
commit
959dba7611
|
@ -1,7 +0,0 @@
|
|||
package ca.uhn.fhir.jpa.sched;
|
||||
|
||||
class NullScheduler extends BaseHapiScheduler {
|
||||
public NullScheduler(String theThreadNamePrefix, AutowiringSpringBeanJobFactory theSpringBeanJobFactory) {
|
||||
super(theThreadNamePrefix, theSpringBeanJobFactory);
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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 {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue