이 코드가 있습니다왜 내 threadExecutor가 동일한 콜백을 두 번 호출합니까?
public <T> T executeCodeBlockWithTimeLimit(String criticalBlockTimeOutMilli, Callable<T> callable) throws
Exception {
ExecutorService service = Executors.newSingleThreadExecutor();
Future<T> future = service.submit(callable);
startStopWatch();
T result;
if (criticalBlockTimeOutMilli != null) {
result = future.get(Long.parseLong(criticalBlockTimeOutMilli), TimeUnit.MILLISECONDS);
} else {
result = callable.call();
}
long timeElapsed = stopStopWatch();
e2eResult.runTime = timeElapsed;
service.shutdown();
return result;
}
및 외부 방법 :
Callable<Void> callable = new
Callable<Void>() {
@Override
public Void call() throws
Exception {
System.out.println("22222");
return null;
}
};
timerUtils.executeCodeBlockWithTimeLimit(criticalBlockTimeOutMilli, callable);
그리고 나는 콘솔 인쇄
22222
22222
왜 두 번이라고 볼 수?
criticalBlockTimeOutMilli가 null로 설정 되었습니까? – laune