Package com.tangosol.net.events
Interface InterceptorMetadataResolver
-
- All Known Implementing Classes:
CdiInterceptorMetadataResolver
public interface InterceptorMetadataResolver
Supports custom resolution of interceptor class in cases when the interceptor may be proxied, such as when using CDI.- Since:
- Coherence 14.1.1
- Author:
- as 2020.04.01
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<? extends EventInterceptor>
getInterceptorClass(EventInterceptor interceptor)
Return the actual interceptor class that the generic type arguments can be reified from.
-
-
-
Method Detail
-
getInterceptorClass
Class<? extends EventInterceptor> getInterceptorClass(EventInterceptor interceptor)
Return the actual interceptor class that the generic type arguments can be reified from.- Parameters:
interceptor
- an interceptor to get the actual class from- Returns:
- the actual interceptor class
-
-