|
@@ -21,8 +21,6 @@ public abstract class NodeExecutor {
|
|
|
|
|
|
/**
|
|
|
* 执行器执行入口-若需要更大维度的执行方式可以重写该方法
|
|
|
- * @param instance
|
|
|
- * @throws Exception
|
|
|
*/
|
|
|
public void execute(NodeComponent instance) throws Exception {
|
|
|
int retryCount = instance.getRetryCount();
|
|
@@ -53,9 +51,6 @@ public abstract class NodeExecutor {
|
|
|
|
|
|
/**
|
|
|
* 执行重试逻辑 - 子类通过实现该方法进行重试逻辑的控制
|
|
|
- * @param instance
|
|
|
- * @param currentRetryCount
|
|
|
- * @throws Exception
|
|
|
*/
|
|
|
protected void retry(NodeComponent instance, int currentRetryCount) throws Exception {
|
|
|
Slot slot = DataBus.getSlot(instance.getSlotIndex());
|