使用Java 8
强大功能CompletableFuture,我想使用此新功能的例外转换旧的异步代码。但是经过检查的例外令我困扰。这是我的代码。
CompletableFuture<Void> asyncTaskCompletableFuture =
CompletableFuture.supplyAsync(t -> processor.process(taskParam));
process
方法的签名:
public void process(Message msg) throws MyException;
如何处理ComletableFuture中的已检查异常?
答案 0 :(得分:2)
我试过这种方式,但我不知道这是否是解决问题的好方法。
@FunctionalInterface
public interface RiskEngineFuncMessageProcessor<Void> extends Supplier<Void> {
@Override
default Void get() {
try {
return acceptThrows();
} catch (final Exception e) {
throw new RuntimeException(e);
}
}
Void acceptThrows() throws Exception;
使用Supplier的FunctionalInterface,我可以包装异常:
final MyFuncProcessor<Void> func = () -> {
processor.process(taskParam);
return null;
};
CompletableFuture<Void> asyncTaskCompletableFuture =
CompletableFuture.supplyAsync(func)
.thenAccept(act -> {
finishTask();
})
.exceptionally(exp -> {
log.error("Failed to consume task", exp);
failTask( exp.getMessage());
return null;
});