DeferredResultMethodReturnValueHandler supports
CompletionStage return values via an adapter mechanism.@Deprecated @UsesJava8 public class CompletionStageReturnValueHandler extends Object implements AsyncHandlerMethodReturnValueHandler
CompletionStage (implemented by
CompletableFuture for example).| Constructor and Description |
|---|
CompletionStageReturnValueHandler()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
handleReturnValue(Object returnValue,
MethodParameter returnType,
ModelAndViewContainer mavContainer,
NativeWebRequest webRequest)
Deprecated.
Handle the given return value by adding attributes to the model and
setting a view or setting the
ModelAndViewContainer.setRequestHandled(boolean) flag to true
to indicate the response has been handled directly. |
boolean |
isAsyncReturnValue(Object returnValue,
MethodParameter returnType)
Deprecated.
Whether the given return value represents asynchronous computation.
|
boolean |
supportsReturnType(MethodParameter returnType)
Deprecated.
Whether the given method return type is
supported by this handler.
|
public CompletionStageReturnValueHandler()
public boolean supportsReturnType(MethodParameter returnType)
HandlerMethodReturnValueHandlersupportsReturnType in interface HandlerMethodReturnValueHandlerreturnType - the method return type to checktrue if this handler supports the supplied return type;
false otherwisepublic boolean isAsyncReturnValue(Object returnValue, MethodParameter returnType)
AsyncHandlerMethodReturnValueHandlerisAsyncReturnValue in interface AsyncHandlerMethodReturnValueHandlerreturnValue - the return valuereturnType - the return typetrue if the return value is asynchronous.public void handleReturnValue(Object returnValue, MethodParameter returnType, ModelAndViewContainer mavContainer, NativeWebRequest webRequest) throws Exception
HandlerMethodReturnValueHandlerModelAndViewContainer.setRequestHandled(boolean) flag to true
to indicate the response has been handled directly.handleReturnValue in interface HandlerMethodReturnValueHandlerreturnValue - the value returned from the handler methodreturnType - the type of the return value. This type must have
previously been passed to HandlerMethodReturnValueHandler.supportsReturnType(org.springframework.core.MethodParameter) which must
have returned true.mavContainer - the ModelAndViewContainer for the current requestwebRequest - the current requestException - if the return value handling results in an error