Commit 1e0c2b41 by huangfusuper

增加实例执行生命周期接口

parent eb8f5e33
package com.byit.strategy;
import com.byit.model.JobTask;
import com.byit.model.RunRecording;
import java.util.List;
/**
* 实例声明周期
*
* @author huangfu
* @date 2020年11月25日15:20:59
*/
public interface InstanceRunTheLifeCycleCallback {
void postProcessAfterInitialization(RunRecording runRecording, List<JobTask> jobTaskList);
void postProcessBeforeInitialization(RunRecording runRecording, List<JobTask> jobTaskList);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment