mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
添加节点执行器组件-使得节点可以自定义执行行为和充实方式
This commit is contained in:
@@ -47,6 +47,9 @@ public class LiteflowProperty {
|
||||
//是否打印liteflow banner
|
||||
private boolean printBanner;
|
||||
|
||||
// 节点执行器class全名
|
||||
private String nodeExecutorClass;
|
||||
|
||||
public boolean isEnable() {
|
||||
return enable;
|
||||
}
|
||||
@@ -142,4 +145,12 @@ public class LiteflowProperty {
|
||||
public void setThreadExecutorClass(String threadExecutorClass) {
|
||||
this.threadExecutorClass = threadExecutorClass;
|
||||
}
|
||||
|
||||
public String getNodeExecutorClass() {
|
||||
return nodeExecutorClass;
|
||||
}
|
||||
|
||||
public void setNodeExecutorClass(String nodeExecutorClass) {
|
||||
this.nodeExecutorClass = nodeExecutorClass;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user