Uses of Interface
org.springframework.web.context.request.async.CallableProcessingInterceptor
Packages that use CallableProcessingInterceptor
Package
Description
Support for asynchronous request processing.
Annotation-based setup for Spring MVC.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.-
Uses of CallableProcessingInterceptor in org.springframework.web.context.request.async
Classes in org.springframework.web.context.request.async that implement CallableProcessingInterceptorModifier and TypeClassDescriptionclass
Sends a 503 (SERVICE_UNAVAILABLE) in case of a timeout if the response is not already committed.Methods in org.springframework.web.context.request.async that return CallableProcessingInterceptorModifier and TypeMethodDescriptionWebAsyncManager.getCallableInterceptor
(Object key) Get theCallableProcessingInterceptor
registered under the given key.Methods in org.springframework.web.context.request.async with parameters of type CallableProcessingInterceptorModifier and TypeMethodDescriptionvoid
WebAsyncManager.registerCallableInterceptor
(Object key, CallableProcessingInterceptor interceptor) Register aCallableProcessingInterceptor
under the given key.void
WebAsyncManager.registerCallableInterceptors
(CallableProcessingInterceptor... interceptors) Register aCallableProcessingInterceptor
without a key. -
Uses of CallableProcessingInterceptor in org.springframework.web.servlet.config.annotation
Methods in org.springframework.web.servlet.config.annotation that return types with arguments of type CallableProcessingInterceptorModifier and TypeMethodDescriptionprotected List<CallableProcessingInterceptor>
AsyncSupportConfigurer.getCallableInterceptors()
Methods in org.springframework.web.servlet.config.annotation with parameters of type CallableProcessingInterceptorModifier and TypeMethodDescriptionAsyncSupportConfigurer.registerCallableInterceptors
(CallableProcessingInterceptor... interceptors) Configure lifecycle interceptors with callbacks around concurrent request execution that starts when a controller returns aCallable
. -
Uses of CallableProcessingInterceptor in org.springframework.web.servlet.mvc.method.annotation
Method parameters in org.springframework.web.servlet.mvc.method.annotation with type arguments of type CallableProcessingInterceptorModifier and TypeMethodDescriptionvoid
RequestMappingHandlerAdapter.setCallableInterceptors
(List<CallableProcessingInterceptor> interceptors) ConfigureCallableProcessingInterceptor
's to register on async requests.