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.Factory
A factory for creating aAdvice.PostProcessor
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Advice.PostProcessor.Factory.Compound
A compound factory for a post processor.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Advice.PostProcessor
make(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
-true
if the advice is exit advice.- Returns:
- The created post processor.
-
-