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

graphql.servlet.NoOpInstrumentationProvider Maven / Gradle / Ivy

There is a newer version: 6.1.3
Show newest version
package graphql.servlet;

import graphql.execution.instrumentation.Instrumentation;
import graphql.execution.instrumentation.SimpleInstrumentation;

public class NoOpInstrumentationProvider implements InstrumentationProvider {

    @Override
    public Instrumentation getInstrumentation() {
        return SimpleInstrumentation.INSTANCE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy