org.graalvm.tools.insight.heap.instrument.HeapDumpInstrumentProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of insight-heap Show documentation
Show all versions of insight-heap Show documentation
Heap Dump for GraalVM Insight
// 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");
}
}