mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
feature #I3ZVEA 流程组件支持重试
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user