我正在尝试扩展CompletableFuture
为thenCompose
after handle
,但出现编译器错误:
Type mismatch: cannot convert from CompletableFuture(Object) to CompletableFuture(U)
这是我的代码:
public class MyCompletableFuture<T> extends CompletableFuture<T> {
public <U> CompletableFuture<U> handleAndCompose(BiFunction<? super T, Throwable, ? extends U> fn) {
return super.handle(fn).thenCompose(x->x);
}
}
作为记录,我试图隐藏这个响应thenCompose
中使用的基本上是:
.handle((x, t) -> {
if (t != null) {
return askPong("Ping");
} else {
return x;
}
)