feature #I4R7AN 节点和Chain如何支持独有的线程池进行异步并发执行

This commit is contained in:
bryan31
2022-01-24 16:22:07 +08:00
parent ab3115e4b5
commit 4a7e57d538
5 changed files with 18 additions and 16 deletions

View File

@@ -2,6 +2,7 @@ package com.yomahub.liteflow.test;
import com.yomahub.liteflow.flow.FlowBus;
import com.yomahub.liteflow.spring.ComponentScanner;
import com.yomahub.liteflow.thread.ExecutorHelper;
import org.junit.AfterClass;
public class BaseTest {
@@ -10,5 +11,6 @@ public class BaseTest {
public static void cleanScanCache(){
ComponentScanner.cleanCache();
FlowBus.cleanCache();
ExecutorHelper.loadInstance().clearExecutorServiceMap();
}
}