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

org.graalvm.tools.insight.heap.instrument.HeapDumpInstrumentProvider Maven / Gradle / Ivy

There is a newer version: 23.0.5
Show newest version
// 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 - 2024 Weber Informatics LLC | Privacy Policy