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 classByteBuddyAgent.ProcessProvider.ForCurrentVmSupplies the current VM's process id.protected static classByteBuddyAgent.ProcessProvider.ForCurrentVm.ForJava9CapableVmA process provider for a Java 9 capable VM with access to the introduced process API.protected static classByteBuddyAgent.ProcessProvider.ForCurrentVm.ForLegacyVmA 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.ProcessProviderByteBuddyAgent.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 voidByteBuddyAgent. 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 voidByteBuddyAgent. 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 voidByteBuddyAgent. 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 voidByteBuddyAgent. 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.InstrumentationByteBuddyAgent. install(ByteBuddyAgent.AttachmentProvider attachmentProvider, ByteBuddyAgent.ProcessProvider processProvider)Installs a Java agent using the Java attach API.static java.lang.instrument.InstrumentationByteBuddyAgent. install(ByteBuddyAgent.ProcessProvider processProvider)Installs a Java agent using the Java attach API.
-