我有这段代码:
CompletableFuture
.supplyAsync(() -> {
return smsService.sendSMS(number);
}).thenApply(result -> {
LOG.info("SMS sended " + result);
});
但我得到一个编译错误:
thenApply(Function<? super Boolean,? extends U>)
类型 中的方法CompletableFuture<Boolean>
不适用于参数((<no type> result) -> {})