org.opensingular.app.commons.mail.schedule.TransactionalQuartzScheduledService Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Singular Studios (a.k.a Atom Tecnologia) - www.opensingular.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opensingular.app.commons.mail.schedule;
import org.opensingular.lib.commons.util.Loggable;
import org.opensingular.schedule.IScheduledJob;
import org.opensingular.schedule.quartz.QuartzScheduleService;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.context.event.EventListener;
import java.util.ArrayList;
import java.util.List;
public class TransactionalQuartzScheduledService extends QuartzScheduleService implements Loggable {
private boolean contextRefreshed;
private List toBeScheduled = new ArrayList<>(); //List containing all Scheduled that have to be executed after Spring initialize.
public TransactionalQuartzScheduledService(SingularSchedulerBean singularSchedulerBean) {
super(false);
setQuartzSchedulerFactory(singularSchedulerBean);
}
/**
* Method responsible for executed all Schedule after Spring initialize.
*/
@EventListener(ContextRefreshedEvent.class)
public synchronized void initAfterBeans() {
init();
contextRefreshed = true;
toBeScheduled.forEach(this::internalSchedule);
toBeScheduled.clear();
}
/**
* Method containg the logic for Schedule the Job's, or put in a list to be executed.
*
* @param scheduledJob The Job for be schedule.
*/
@Override
public synchronized void schedule(IScheduledJob scheduledJob) {
if (contextRefreshed) {
internalSchedule(scheduledJob);
} else {
toBeScheduled.add(scheduledJob);
}
}
/**
* This method will Schedule the JOB.
*
* @param scheduledJob The Job for be schedule.
*/
private void internalSchedule(IScheduledJob scheduledJob) {
super.schedule(new TransactionalScheduledJobProxy(scheduledJob));
getLogger().info("Job({}) scheduled.", scheduledJob);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy