Interface ApplicationEventInterceptor
-
- All Superinterfaces:
org.springframework.core.Ordered
public interface ApplicationEventInterceptor extends org.springframework.core.OrderedApplicationEventInterceptor- Since:
- 1.0.0
- Author:
- Mercy
- See Also:
ApplicationEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default intgetOrder()voidintercept(org.springframework.context.ApplicationEvent event, org.springframework.core.ResolvableType eventType, ApplicationEventInterceptorChain chain)Intercept the specifiedApplicationEventwithtype
-
-
-
Method Detail
-
intercept
void intercept(org.springframework.context.ApplicationEvent event, org.springframework.core.ResolvableType eventType, ApplicationEventInterceptorChain chain)Intercept the specifiedApplicationEventwithtype- Parameters:
event-ApplicationEventeventType-ResolvableTypeto present the type ofApplicationEventchain-ApplicationEventInterceptorChain
-
getOrder
default int getOrder()
- Specified by:
getOrderin interfaceorg.springframework.core.Ordered
-
-