br.com.caelum.vraptor.tasks.TaskExecutor Maven / Gradle / Ivy
package br.com.caelum.vraptor.tasks;
import org.quartz.SchedulerException;
public interface TaskExecutor {
void execute(String taskId) throws SchedulerException;
void pause(String taskId) throws SchedulerException;
void resume(String taskId) throws SchedulerException;
void pauseAll() throws SchedulerException;
void resumeAll() throws SchedulerException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy