Class AsyncResult<V>
java.lang.Object
org.springframework.scheduling.annotation.AsyncResult<V>
- Type Parameters:
V
- the value type
- All Implemented Interfaces:
Future<V>
,ListenableFuture<V>
Deprecated.
A pass-through
Future
handle that can be used for method signatures
which are declared with a Future
return type for asynchronous execution.
As of Spring 4.1, this class implements ListenableFuture
, not just
plain Future
, along with the corresponding support
in @Async
processing.
As of Spring 4.2, this class also supports passing execution exceptions back to the caller.
- Since:
- 3.0
- Author:
- Juergen Hoeller, Rossen Stoyanchev
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCallback
(ListenableFutureCallback<? super V> callback) Deprecated.Register the givenListenableFutureCallback
.void
addCallback
(SuccessCallback<? super V> successCallback, FailureCallback failureCallback) Deprecated.Java 8 lambda-friendly alternative with success and failure callbacks.boolean
cancel
(boolean mayInterruptIfRunning) Deprecated.Deprecated.Expose thisListenableFuture
as a JDKCompletableFuture
.static <V> ListenableFuture<V>
Deprecated.Create a new async result which exposes the given exception as anExecutionException
fromFuture.get()
.static <V> ListenableFuture<V>
forValue
(V value) Deprecated.Create a new async result which exposes the given value fromFuture.get()
.get()
Deprecated.Deprecated.boolean
Deprecated.boolean
isDone()
Deprecated.
-
Constructor Details
-
AsyncResult
Deprecated.Create a new AsyncResult holder.- Parameters:
value
- the value to pass through
-
-
Method Details
-
cancel
public boolean cancel(boolean mayInterruptIfRunning) Deprecated. -
isCancelled
public boolean isCancelled()Deprecated.- Specified by:
isCancelled
in interfaceFuture<V>
-
isDone
public boolean isDone()Deprecated. -
get
Deprecated.- Specified by:
get
in interfaceFuture<V>
- Throws:
ExecutionException
-
get
Deprecated.- Specified by:
get
in interfaceFuture<V>
- Throws:
ExecutionException
-
addCallback
Deprecated.Description copied from interface:ListenableFuture
Register the givenListenableFutureCallback
.- Specified by:
addCallback
in interfaceListenableFuture<V>
- Parameters:
callback
- the callback to register
-
addCallback
public void addCallback(SuccessCallback<? super V> successCallback, FailureCallback failureCallback) Deprecated.Description copied from interface:ListenableFuture
Java 8 lambda-friendly alternative with success and failure callbacks.- Specified by:
addCallback
in interfaceListenableFuture<V>
- Parameters:
successCallback
- the success callbackfailureCallback
- the failure callback
-
completable
Deprecated.Description copied from interface:ListenableFuture
Expose thisListenableFuture
as a JDKCompletableFuture
.- Specified by:
completable
in interfaceListenableFuture<V>
-
forValue
Deprecated.Create a new async result which exposes the given value fromFuture.get()
.- Parameters:
value
- the value to expose- Since:
- 4.2
- See Also:
-
forExecutionException
Deprecated.Create a new async result which exposes the given exception as anExecutionException
fromFuture.get()
.- Parameters:
ex
- the exception to expose (either an pre-builtExecutionException
or a cause to be wrapped in anExecutionException
)- Since:
- 4.2
- See Also:
-
CompletableFuture