All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.highway2urhell.agent.H2hellAgent Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.highway2urhell.agent;

import com.highway2urhell.PluginUtils;
import com.highway2urhell.transformer.AbstractLeechTransformer;

import java.lang.instrument.Instrumentation;

public class H2hellAgent {


    public static void premain(String agentArgs, Instrumentation inst) {
        for (AbstractLeechTransformer transformer : PluginUtils.autodiscoverPlugin(AbstractLeechTransformer.class)) {
            inst.addTransformer(transformer);
        }
        InstrumentationHolder.getInstance().persistInMemory(inst);

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy