Uses of Interface
net.bytebuddy.agent.ByteBuddyAgent.ProcessProvider
-
Packages that use ByteBuddyAgent.ProcessProvider Package Description net.bytebuddy.agent The Byte Buddy agent allows the redefinition of classes at runtime. -
-
Uses of ByteBuddyAgent.ProcessProvider in net.bytebuddy.agent
Classes in net.bytebuddy.agent that implement ByteBuddyAgent.ProcessProvider Modifier and Type Class Description static class
ByteBuddyAgent.ProcessProvider.ForCurrentVm
Supplies the current VM's process id.protected static class
ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForJava9CapableVm
A process provider for a Java 9 capable VM with access to the introduced process API.protected static class
ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForLegacyVm
A process provider for a legacy VM that reads the process id from its JMX properties.Methods in net.bytebuddy.agent that return ByteBuddyAgent.ProcessProvider Modifier and Type Method Description static ByteBuddyAgent.ProcessProvider
ByteBuddyAgent.ProcessProvider.ForCurrentVm.ForJava9CapableVm. make()
Attempts to create a dispatcher for a Java 9 VM and falls back to a legacy dispatcher if this is not possible.Methods in net.bytebuddy.agent with parameters of type ByteBuddyAgent.ProcessProvider Modifier and Type Method Description static void
ByteBuddyAgent. attach(java.io.File agentJar, ByteBuddyAgent.ProcessProvider processProvider)
Attaches the given agent Jar on the target process which must be a virtual machine process.static void
ByteBuddyAgent. attach(java.io.File agentJar, ByteBuddyAgent.ProcessProvider processProvider, java.lang.String argument)
Attaches the given agent Jar on the target process which must be a virtual machine process.static void
ByteBuddyAgent. attach(java.io.File agentJar, ByteBuddyAgent.ProcessProvider processProvider, java.lang.String argument, ByteBuddyAgent.AttachmentProvider attachmentProvider)
Attaches the given agent Jar on the target process which must be a virtual machine process.static void
ByteBuddyAgent. attach(java.io.File agentJar, ByteBuddyAgent.ProcessProvider processProvider, ByteBuddyAgent.AttachmentProvider attachmentProvider)
Attaches the given agent Jar on the target process which must be a virtual machine process.static java.lang.instrument.Instrumentation
ByteBuddyAgent. install(ByteBuddyAgent.AttachmentProvider attachmentProvider, ByteBuddyAgent.ProcessProvider processProvider)
Installs a Java agent using the Java attach API.static java.lang.instrument.Instrumentation
ByteBuddyAgent. install(ByteBuddyAgent.ProcessProvider processProvider)
Installs a Java agent using the Java attach API.
-