Package net.bytebuddy.asm
Interface Advice.PostProcessor.Factory
-
- All Known Implementing Classes:
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(MethodDescription.InDefinedShape advice, boolean exit)Creates a post processor for a given advice method.
-
-
-
Method Detail
-
make
Advice.PostProcessor make(MethodDescription.InDefinedShape advice, boolean exit)
Creates a post processor for a given advice method.- Parameters:
advice- The advice method to create the post processor for.exit-trueif the advice is exit advice.- Returns:
- The created post processor.
-
-