Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher
-
Packages that use AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher 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.ResubmissionImmediateMatcher in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher Modifier and Type Class Description static class
AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher.Conjunction
A matcher for immediate resubmission that matches both of the supplied delegate matchers.static class
AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher.Disjunction
A matcher for immediate resubmission that matches either of the supplied delegate matchers.static class
AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher.ForElementMatchers
A matcher for immediate resubmission that uses element matchers for each argument to determine a resubmission.static class
AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher.Trivial
A trivial matcher for immediate resubmission.Fields in net.bytebuddy.agent.builder declared as AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher Modifier and Type Field Description private AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher
AgentBuilder.Default.Redefining.WithResubmission. resubmissionImmediateMatcher
A matcher to determine resubmissions without errors.private AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled. resubmissionImmediateMatcher
A matcher to determine resubmissions without errors.private AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.Resubmitter. resubmissionImmediateMatcher
A matcher to determine resubmissions without errors.Fields in net.bytebuddy.agent.builder with type parameters of type AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher Modifier and Type Field Description private java.util.List<AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher>
AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher.Conjunction. matchers
The matchers in their application order.private java.util.List<AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher>
AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher.Disjunction. matchers
The matchers in their application order.Methods in net.bytebuddy.agent.builder with parameters of type AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher Modifier and Type Method Description AgentBuilder.RedefinitionListenable.WithResubmissionSpecification
AgentBuilder.Default.Redefining.WithResubmission. resubmitImmediate(AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher matcher)
Specifies that transformations of unloaded types should not be transformed when they are loaded for the first time but should rather be resubmitted after they are loaded.AgentBuilder.RedefinitionListenable.WithResubmissionSpecification
AgentBuilder.RedefinitionListenable.WithoutResubmissionSpecification. resubmitImmediate(AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher matcher)
Specifies that transformations of unloaded types should not be transformed when they are loaded for the first time but should rather be resubmitted after they are loaded.Constructor parameters in net.bytebuddy.agent.builder with type arguments of type AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher Constructor Description Conjunction(java.util.List<? extends AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher> matchers)
Creates a new conjunction for an immediate resubmission matcher.Disjunction(java.util.List<? extends AgentBuilder.RedefinitionListenable.ResubmissionImmediateMatcher> matchers)
Creates a new disjunction for an immediate resubmission matcher.
-