Interface ApplicationEventInterceptorChain
-
public interface ApplicationEventInterceptorChain
- Since:
- 1.0.0
- Author:
- Mercy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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.
-
-
-
Method Detail
-
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
-ApplicationEvent
eventType
-ResolvableType
to present the type ofApplicationEvent
-
-