com.github.ltsopensource.spring.quartz.invoke.JobExecution Maven / Gradle / Ivy
The newest version!
package com.github.ltsopensource.spring.quartz.invoke;
import com.github.ltsopensource.core.domain.Job;
import com.github.ltsopensource.spring.quartz.QuartzJobContext;
/**
* @author Robert HG ([email protected]) on 3/27/16.
*/
public interface JobExecution {
public void execute(QuartzJobContext quartzJobContext, Job job) throws Throwable;
}