なんらかの理由でブロックするJavaのメソッドを呼び出したい。メソッドをX分間待ってから、そのメソッドを停止したいと思います。
StackOverflowで1つのソリューションを読んだので、最初のクイックスタートができました。私はここにそれを書いています:-
ExecutorService executor = Executors.newCachedThreadPool();
Callable<Object> task = new Callable<Object>() {
public Object call() {
return something.blockingMethod();
}
};
Future<Object> future = executor.submit(task);
try {
Object result = future.get(5, TimeUnit.SECONDS);
} catch (TimeoutException ex) {
// handle the timeout
} catch (InterruptedException e) {
// handle the interrupts
} catch (ExecutionException e) {
// handle other exceptions
} finally {
future.cancel(); // may or may not desire this
}
しかし今、私の問題は、私の関数がいくつかの例外をスローする可能性があることです。これをキャッチして、それに応じていくつかのタスクを実行する必要があります。したがって、コードで関数blockingMethod()がいくつかの例外をスローする場合、Outerクラスでそれらをキャッチするにはどうすればよいですか?