-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Interceptor<T,R>
- Author:
- Vladlen Larionov
-
-
Field Summary
Fields Modifier and Type Field Description static StringINTERCEPT_METHODstatic StringINVOCATION_CONTEXT_PARAM
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rintercept(InvocationContext<T,R> ctx)
-
-
-
Field Detail
-
INVOCATION_CONTEXT_PARAM
static final String INVOCATION_CONTEXT_PARAM
- See Also:
- Constant Field Values
-
INTERCEPT_METHOD
static final String INTERCEPT_METHOD
- See Also:
- Constant Field Values
-
-
Method Detail
-
intercept
R intercept(InvocationContext<T,R> ctx)
-
-