Interface ApplicationEventInterceptor
-
- All Superinterfaces:
org.springframework.core.Ordered
public interface ApplicationEventInterceptor extends org.springframework.core.Ordered
ApplicationEvent
Interceptor- 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 int
getOrder()
void
intercept(org.springframework.context.ApplicationEvent event, org.springframework.core.ResolvableType eventType, ApplicationEventInterceptorChain chain)
Intercept the specifiedApplicationEvent
withtype
-
-
-
Method Detail
-
intercept
void intercept(org.springframework.context.ApplicationEvent event, org.springframework.core.ResolvableType eventType, ApplicationEventInterceptorChain chain)
Intercept the specifiedApplicationEvent
withtype
- Parameters:
event
-ApplicationEvent
eventType
-ResolvableType
to present the type ofApplicationEvent
chain
-ApplicationEventInterceptorChain
-
getOrder
default int getOrder()
- Specified by:
getOrder
in interfaceorg.springframework.core.Ordered
-
-