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
public interface Weaver{
/**
* Transform input class with specified rules.
* Input one class may return two classes, because weaver may create multiple inner classes. <---------- 插桩处理中,有可能返回多个处理后的class
* this method will be invoke in multi-threaded and multi-process
*
* @param input the bytecode of the class want to transform.
* @param relativePath the file path of the class, end with .class, the new classes will output into the same path.
* @return the bytecode of transformed classes.
*/
ClassData[] weave(byte[] input, String relativePath);
}
No description provided.
The text was updated successfully, but these errors were encountered: