在下面的代码中,我想终止ExecutorService提交的Callable进程。目前,即使在循环执行之前调用了shutdown,也无法终止可调用进程的执行。
任何建议都会有所帮助。
package foundation.util.sql.parser;
import java.io.IOException;
import java.util.HashMap;
import java.util.concurrent.*;
public class Test {
public static void main(String[] args) {
try {
final java.util.Map<String, ExecutorService> map = new HashMap<>();
ExecutorService service = Executors.newFixedThreadPool(1);
map.put("1", service);
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
System.out.println("Termination Initiated");
ExecutorService executorService = map.get("1");
System.out.println("ShutDown called");
if(!executorService.isShutdown())
{
executorService.shutdownNow();
}
} catch (Exception e) {
e.printStackTrace();
}
}
});
Future<Boolean> submit = service.submit(new Callable<Boolean>() {
@Override
public Boolean call() throws Exception {
int j = 0;
System.out.println(Thread.currentThread().getName());
for (int i=0; i<5000;i++) {
//Some business Process.
j = i;
}
System.out.println("Test____"+ j);
return null;
}
});
thread.start();
submit.get();
} catch (Exception e) {
e.printStackTrace();
}
}
}
答案 0 :(得分:0)
当我们致电showDownNow()
时,它并没有终止正在运行的任务,事实上
它只是阻止等待任务开始和尝试停止当前正在执行的任务。
根据javadoc
除了尽力尝试停止处理主动执行任务之外,没有任何保证。例如,典型的实现将通过Thread.interrupt(),取消,因此任何无法响应中断的任务都可能永远不会终止。
在您的可调用中,您没有响应/检查中断。如果interrupt flag设置为true,则需要定期检查。如果是,请根据需要进行必要的清理并终止。
例如,在您的情况下,您可以考虑检查interrupt flag
如下(或适用的地方):
for (int i=0; i<5000;i++) {
//Some business Process.
if(Thread.currentThread().isInterrupted()) {
// do any cleanup and return from here.
return false;
}
j = i;
}