package com.yanzuoguang.util.thread;
/**
* 当前执行类库
* @author 颜佐光
*/
public interface ThreadWaitExecute {
/**
* 任务是否结束
*
* @return
* @description
*/
boolean isFinally();
/**
* 打印任务状态
*
* @description
*/
void printStatus();
/**
* 当进度多长时间没有变动时打印状态
*
* @return
*/
int printTimeout();
}
-
yanzg authored316438e9