类 DelegatingCompletableFuture<T>

java.lang.Object
java.util.concurrent.CompletableFuture<T>
cn.taketoday.util.concurrent.DelegatingCompletableFuture<T>
类型参数:
T - the result type returned by this Future's get method
所有已实现的接口:
FutureListener<ListenableFuture<T>>, CompletionStage<T>, Future<T>, EventListener

class DelegatingCompletableFuture<T> extends CompletableFuture<T> implements FutureListener<ListenableFuture<T>>
Extension of CompletableFuture which allows for cancelling a delegate along with the CompletableFuture itself.
从以下版本开始:
4.0
作者:
Juergen Hoeller, Harry Yang