Package net.bytebuddy.asm
Interface Advice.PostProcessor.Factory
-
- All Known Implementing Classes:
Advice.AssignReturned.Factory,Advice.PostProcessor.Factory.Compound,Advice.PostProcessor.NoOp
- Enclosing interface:
- Advice.PostProcessor
public static interface Advice.PostProcessor.FactoryA factory for creating aAdvice.PostProcessor.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classAdvice.PostProcessor.Factory.CompoundA compound factory for a post processor.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Advice.PostProcessormake(java.util.List<? extends AnnotationDescription> annotations, TypeDescription returnType, boolean exit)Creates a post processor for a given advice method.
-
-
-
Method Detail
-
make
Advice.PostProcessor make(java.util.List<? extends AnnotationDescription> annotations, TypeDescription returnType, boolean exit)
Creates a post processor for a given advice method.- Parameters:
annotations- The annotations of the advice method.returnType- The advice method's return type that is being post-processed.exit-trueif the advice is exit advice.- Returns:
- The created post processor.
-
-