接口 ApplicationEventInterceptorChain
-
public interface ApplicationEventInterceptorChain
- 从以下版本开始:
- 1.0.0
- 作者:
- Mercy
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 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.
-
-
-
方法详细资料
-
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.- 参数:
event
-ApplicationEvent
eventType
-ResolvableType
to present the type ofApplicationEvent
-
-