cn.schoolwow.data.thread.module.progress.kit.DataThreadProgressOperation Maven / Gradle / Ivy
package cn.schoolwow.data.thread.module.progress.kit;
import cn.schoolwow.data.thread.domain.progress.DataThreadProgress;
import java.util.List;
public interface DataThreadProgressOperation {
/**
* 获取进度列表
* */
List getDataThreadProgressList();
/**
* 中断任务
* */
void interruptDataThread(long id);
/**
* 删除进度信息
* */
void deleteDataThreadProgress(long id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy