package com.xxl.job.core.biz;
|
|
import com.xxl.job.core.biz.model.LogResult;
|
import com.xxl.job.core.biz.model.ReturnT;
|
import com.xxl.job.core.biz.model.TriggerParam;
|
|
/**
|
* Created by xuxueli on 17/3/1.
|
*/
|
public interface ExecutorBiz {
|
|
/**
|
* beat
|
* @return
|
*/
|
public ReturnT<String> beat();
|
|
/**
|
* idle beat
|
*
|
* @param jobId
|
* @return
|
*/
|
public ReturnT<String> idleBeat(int jobId);
|
|
/**
|
* kill
|
* @param jobId
|
* @return
|
*/
|
public ReturnT<String> kill(int jobId);
|
|
/**
|
* log
|
* @param logDateTim
|
* @param logId
|
* @param fromLineNum
|
* @return
|
*/
|
public ReturnT<LogResult> log(long logDateTim, int logId, int fromLineNum);
|
|
/**
|
* run
|
* @param triggerParam
|
* @return
|
*/
|
public ReturnT<String> run(TriggerParam triggerParam);
|
|
}
|