![JAR search and dependency download from the Maven repository](/logo.png)
org.graalvm.tools.insight.heap.instrument.HeapDumpInstrumentProvider Maven / Gradle / Ivy
// CheckStyle: start generated
package org.graalvm.tools.insight.heap.instrument;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.instrumentation.TruffleInstrument;
import com.oracle.truffle.api.instrumentation.TruffleInstrument.Provider;
import com.oracle.truffle.api.instrumentation.TruffleInstrument.Registration;
import java.util.Arrays;
import java.util.Collection;
@GeneratedBy(HeapDumpInstrument.class)
@Registration(id = "heap", internal = false, name = "Heap Dump")
public final class HeapDumpInstrumentProvider implements Provider {
@Override
public String getInstrumentClassName() {
return "org.graalvm.tools.insight.heap.instrument.HeapDumpInstrument";
}
@Override
public TruffleInstrument create() {
return new HeapDumpInstrument();
}
@Override
public Collection getServicesClassNames() {
return Arrays.asList("org.graalvm.tools.insight.Insight$SymbolProvider", "java.util.function.Consumer");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy