feature #I3ZVEA 流程组件支持重试

This commit is contained in:
bryan31
2021-07-28 14:03:04 +08:00
parent 6deaa3f6b7
commit 1c4d673ffb
14 changed files with 242 additions and 46 deletions

View File

@@ -35,6 +35,9 @@ public class LiteflowProperty {
//但是要注意,不能将主流程和子流程分配在不同类型配置文件中
private boolean supportMultipleType;
//重试次数
private int retryCount;
public boolean isEnable() {
return enable;
}
@@ -98,4 +101,12 @@ public class LiteflowProperty {
public void setSupportMultipleType(boolean supportMultipleType) {
this.supportMultipleType = supportMultipleType;
}
public int getRetryCount() {
return retryCount;
}
public void setRetryCount(int retryCount) {
this.retryCount = retryCount;
}
}