You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi raphw,
Since the java.lang.Thread is loaded before premain, it seems there is no way to intercept java.lang.Thread:start() via method delegation instead of asm visitor annotation (e.g. @Advice.OnMethodEnter), is that right ?
The text was updated successfully, but these errors were encountered:
Have a look at RetransformationStrategy, which allows you to transform loaded classes. Also, you likely need to disableClassFormatChanges() in doing so.
Hi raphw,
Since the
java.lang.Thread
is loaded before premain, it seems there is no way to intercept java.lang.Thread:start() via method delegation instead of asm visitor annotation (e.g.@Advice.OnMethodEnter
), is that right ?The text was updated successfully, but these errors were encountered: