Interface ApplicationEventInterceptorChain
public interface ApplicationEventInterceptorChain
- Since:
- 1.0.0
- Author:
- Mercy
-
Method Summary
Modifier and TypeMethodDescriptionvoidintercept(org.springframework.context.ApplicationEvent event, org.springframework.core.ResolvableType eventType) Causes the next interceptor in the chain to be invoked, or if the calling interceptor is the last interceptor in the chain, causes the resource at the end of the chain to be invoked.
-
Method Details
-
intercept
void intercept(org.springframework.context.ApplicationEvent event, org.springframework.core.ResolvableType eventType) Causes the next interceptor in the chain to be invoked, or if the calling interceptor is the last interceptor in the chain, causes the resource at the end of the chain to be invoked.- Parameters:
event-ApplicationEventeventType-ResolvableTypeto present the type ofApplicationEvent
-