fix: 删除测试文件

pull/9/head
Carina 3 years ago
parent 231f31efaf
commit b1b049d8df

@ -1,20 +0,0 @@
package org.opsli.common.thread;
import cn.hutool.core.thread.ThreadUtil;
public class Test {
public static void main(String[] args) {
AsyncProcessExecutor executor = new AsyncProcessExecutorByNormal();
for (int i = 0; i < 10000; i++) {
int finalI = i;
executor.put(()->{
ThreadUtil.sleep(1000);
System.out.println(finalI);
});
}
boolean execute = executor.execute();
System.out.println(execute);
}
}
Loading…
Cancel
Save