Package net.bytebuddy.asm
Interface Advice.Delegator.Factory
-
- All Known Implementing Classes:
Advice.Delegator.ForDynamicInvocation.Factory
,Advice.Delegator.ForRegularInvocation.Factory
- Enclosing interface:
- Advice.Delegator
public static interface Advice.Delegator.Factory
A factory for creating aAdvice.Delegator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Advice.Delegator
make(MethodDescription.InDefinedShape adviceMethod, boolean exit)
Resolves a delegator.
-
-
-
Method Detail
-
make
Advice.Delegator make(MethodDescription.InDefinedShape adviceMethod, boolean exit)
Resolves a delegator.- Parameters:
adviceMethod
- The advice method.exit
-true
if the advice is applied as exit advice.- Returns:
- An appropriate delegator.
-
-