Class AsyncResult<v>

java.lang.Object
org.springframework.scheduling.annotation.AsyncResult<v>
Type Parameters:
v - the value type
All Implemented Interfaces:
Future<v>

@Deprecated(since="6.0") public class AsyncResult<v> extends Object implements Future<v>
Deprecated.
as of 6.0, in favor of CompletableFuture
A pass-through Future handle that can be used for method signatures which are declared with a Future return type for asynchronous execution.
Since:
3.0
Author:
Juergen Hoeller, Rossen Stoyanchev
See Also: