feature #I4E5NX 异步线程池自定义

This commit is contained in:
bryan31
2021-12-10 23:47:07 +08:00
parent 94760b9f21
commit 8ca854c188
29 changed files with 452 additions and 52 deletions

View File

@@ -21,6 +21,9 @@ public class LiteflowProperty {
//slot的数量
private int slotSize;
//并行线程执行器class路径
private String threadExecutorClass;
//异步线程最大等待描述
private int whenMaxWaitSeconds;
@@ -131,4 +134,12 @@ public class LiteflowProperty {
public void setPrintBanner(boolean printBanner) {
this.printBanner = printBanner;
}
public String getThreadExecutorClass() {
return threadExecutorClass;
}
public void setThreadExecutorClass(String threadExecutorClass) {
this.threadExecutorClass = threadExecutorClass;
}
}