All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.caelum.vraptor.tasks.TaskExecutor Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
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