Package | Description |
---|---|
net.bytebuddy.agent.builder |
An agent builder is used to easily implement load-time class-transformations using a Java agent.
|
Modifier and Type | Class and Description |
---|---|
static class |
AgentBuilder.RedefinitionStrategy.ResubmissionScheduler.AtFixedRate
A resubmission scheduler that schedules jobs at a fixed rate.
|
static class |
AgentBuilder.RedefinitionStrategy.ResubmissionScheduler.NoOp
A resubmission scheduler that does not apply any scheduling.
|
static class |
AgentBuilder.RedefinitionStrategy.ResubmissionScheduler.WithFixedDelay
A resubmission scheduler that schedules jobs with a fixed delay.
|
Modifier and Type | Field and Description |
---|---|
private AgentBuilder.RedefinitionStrategy.ResubmissionScheduler |
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.resubmissionScheduler
A scheduler that is responsible for resubmission of types.
|
private AgentBuilder.RedefinitionStrategy.ResubmissionScheduler |
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.ResubmissionInstallationListener.resubmissionScheduler
The resubmission scheduler to use.
|
Modifier and Type | Method and Description |
---|---|
AgentBuilder |
AgentBuilder.RedefinitionListenable.withResubmission(AgentBuilder.RedefinitionStrategy.ResubmissionScheduler resubmissionScheduler)
Enables resubmission of failed transformations by applying a retransformation of the loaded type.
|
AgentBuilder |
AgentBuilder.Default.Redefining.withResubmission(AgentBuilder.RedefinitionStrategy.ResubmissionScheduler resubmissionScheduler)
Enables resubmission of failed transformations by applying a retransformation of the loaded type.
|
AgentBuilder |
AgentBuilder.RedefinitionListenable.withResubmission(AgentBuilder.RedefinitionStrategy.ResubmissionScheduler resubmissionScheduler,
ElementMatcher<? super java.lang.Throwable> matcher)
Enables resubmission of failed transformations by applying a retransformation of the loaded type.
|
AgentBuilder |
AgentBuilder.Default.Redefining.withResubmission(AgentBuilder.RedefinitionStrategy.ResubmissionScheduler resubmissionScheduler,
ElementMatcher<? super java.lang.Throwable> matcher)
Enables resubmission of failed transformations by applying a retransformation of the loaded type.
|