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.Factory
A factory for creating a
Advice.PostProcessor
.-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
A compound factory for a post processor. -
Method Summary
Modifier and TypeMethodDescriptionmake
(MethodDescription.InDefinedShape advice, boolean exit) Creates a post processor for a given advice method.
-
Method Details
-
make
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.
-