Java org.springframework.web.context.request.async WebAsyncManager fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.context.request.async WebAsyncManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.context.request.async WebAsyncManager.

The text is from its open source code.

Method

voidclearConcurrentResult()
Clear #getConcurrentResult() concurrentResult and #getConcurrentResultContext() concurrentResultContext .
CallableProcessingInterceptorgetCallableInterceptor(Object key)
Get the CallableProcessingInterceptor registered under the given key.
ObjectgetConcurrentResult()
Provides access to the result from concurrent handling.
Object[]getConcurrentResultContext()
Provides access to additional processing context saved at the start of concurrent handling.
booleanhasConcurrentResult()
Whether a result value exists as a result of concurrent handling.
booleanisConcurrentHandlingStarted()
Whether the selected handler for the current request chose to handle the request asynchronously.
voidregisterCallableInterceptor(Object key, CallableProcessingInterceptor interceptor)
Register a CallableProcessingInterceptor under the given key.
voidregisterCallableInterceptors(CallableProcessingInterceptor... interceptors)
Register a CallableProcessingInterceptor without a key.
voidregisterDeferredResultInterceptor(Object key, DeferredResultProcessingInterceptor interceptor)
Register a DeferredResultProcessingInterceptor under the given key.
voidregisterDeferredResultInterceptors(DeferredResultProcessingInterceptor... interceptors)
Register one or more DeferredResultProcessingInterceptor DeferredResultProcessingInterceptors without a specified key.
voidsetAsyncWebRequest(AsyncWebRequest asyncWebRequest)
Configure the AsyncWebRequest to use.
voidsetTaskExecutor(AsyncTaskExecutor taskExecutor)
Configure an AsyncTaskExecutor for use with concurrent processing via #startCallableProcessing(Callable,Object) .