Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher
-
Packages that use AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent. -
-
Uses of AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher Modifier and Type Class Description static class
AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.Conjunction
A matcher for resubmission upon an error that matches both of the supplied delegate matchers.static class
AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.Disjunction
A matcher for resubmission upon an error that matches either of the supplied delegate matchers.static class
AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.ForElementMatchers
A matcher for resubmission upon error that uses element matchers for each argument to determine a resubmission.static class
AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.Trivial
A trivial matcher for resubmission upon an exception.Fields in net.bytebuddy.agent.builder declared as AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher Modifier and Type Field Description private AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher
AgentBuilder.Default.Redefining.WithResubmission. resubmissionOnErrorMatcher
A matcher to determine resubmissions on errors.private AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled. resubmissionOnErrorMatcher
A matcher to determine resubmissions on errors.private AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.Resubmitter. resubmissionOnErrorMatcher
A matcher to determine resubmissions on errors.Fields in net.bytebuddy.agent.builder with type parameters of type AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher Modifier and Type Field Description private java.util.List<AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher>
AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.Conjunction. matchers
The represented matchers in their application order.private java.util.List<AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher>
AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.Disjunction. matchers
The represented matchers in their application order.Methods in net.bytebuddy.agent.builder with parameters of type AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher Modifier and Type Method Description AgentBuilder.RedefinitionListenable.WithResubmissionSpecification
AgentBuilder.Default.Redefining.WithResubmission. resubmitOnError(AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher matcher)
Specifies that transformations of unloaded types that yield an error are resubmitted as transformation of the loaded type, given that the specified matcher matches the type in question.AgentBuilder.RedefinitionListenable.WithResubmissionSpecification
AgentBuilder.RedefinitionListenable.WithoutResubmissionSpecification. resubmitOnError(AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher matcher)
Specifies that transformations of unloaded types that yield an error are resubmitted as transformation of the loaded type, given that the specified matcher matches the type in question.Constructor parameters in net.bytebuddy.agent.builder with type arguments of type AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher Constructor Description Conjunction(java.util.List<? extends AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher> matchers)
Creates a new conjunction for a resubmission matcher upon an error.Disjunction(java.util.List<? extends AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher> matchers)
Creates a new conjunction for a resubmission matcher upon an error.
-