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 classAgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.ConjunctionA matcher for resubmission upon an error that matches both of the supplied delegate matchers.static classAgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.DisjunctionA matcher for resubmission upon an error that matches either of the supplied delegate matchers.static classAgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.ForElementMatchersA matcher for resubmission upon error that uses element matchers for each argument to determine a resubmission.static classAgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.TrivialA 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.ResubmissionOnErrorMatcherAgentBuilder.Default.Redefining.WithResubmission. resubmissionOnErrorMatcherA matcher to determine resubmissions on errors.private AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcherAgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled. resubmissionOnErrorMatcherA matcher to determine resubmissions on errors.private AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcherAgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.Resubmitter. resubmissionOnErrorMatcherA 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. matchersThe represented matchers in their application order.private java.util.List<AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher>AgentBuilder.RedefinitionListenable.ResubmissionOnErrorMatcher.Disjunction. matchersThe 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.WithResubmissionSpecificationAgentBuilder.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.WithResubmissionSpecificationAgentBuilder.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.
-