// This is a hack to prevent certain objects from ever being flushed. "this" should never be flushed (at least not
// until the scheduler is shutdown) since it is referenced from the scheduler (which is not a shared object)
// private transient Set<Object> hardRefs = new HashSet<Object>();
public DefaultClusteredJobStore(boolean synchWrite, Toolkit toolkit, String jobStoreName) {
this(synchWrite, toolkit, jobStoreName, new ToolkitDSHolder(jobStoreName, toolkit), new DefaultWrapperFactory());
}