Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.InstallationListener
-
Packages that use AgentBuilder.InstallationListener 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.InstallationListener in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.InstallationListener Modifier and Type Class Description static class
AgentBuilder.InstallationListener.Adapter
An adapter implementation for an installation listener that serves as a convenience.static class
AgentBuilder.InstallationListener.Compound
A compound installation listener.static class
AgentBuilder.InstallationListener.ErrorSuppressing
A listener that suppresses any installation error.static class
AgentBuilder.InstallationListener.NoOp
A non-operational listener that does not do anything.static class
AgentBuilder.InstallationListener.StreamWriting
This installation listener prints the status of any installation to aPrintStream
.protected static class
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Enabled.ResubmissionInstallationListener
A job that resubmits any matched type that previously failed during transformation.Fields in net.bytebuddy.agent.builder declared as AgentBuilder.InstallationListener Modifier and Type Field Description protected AgentBuilder.InstallationListener
AgentBuilder.Default. installationListener
The installation listener to notify.Methods in net.bytebuddy.agent.builder that return AgentBuilder.InstallationListener Modifier and Type Method Description protected AgentBuilder.InstallationListener
AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Installation. getInstallationListener()
Returns the installation listener to apply.static AgentBuilder.InstallationListener
AgentBuilder.InstallationListener.StreamWriting. toSystemError()
Creates a stream writing installation listener that prints toSystem.err
.static AgentBuilder.InstallationListener
AgentBuilder.InstallationListener.StreamWriting. toSystemOut()
Creates a stream writing installation listener that prints toSystem.out
.Constructor parameters in net.bytebuddy.agent.builder with type arguments of type AgentBuilder.InstallationListener Constructor Description Compound(java.util.List<? extends AgentBuilder.InstallationListener> installationListeners)
Creates a new compound listener.
-