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

graphql.kickstart.execution.instrumentation.NoOpInstrumentationProvider Maven / Gradle / Ivy

package graphql.kickstart.execution.instrumentation;

import graphql.execution.instrumentation.Instrumentation;
import graphql.execution.instrumentation.SimpleInstrumentation;
import graphql.kickstart.execution.config.InstrumentationProvider;

public class NoOpInstrumentationProvider implements InstrumentationProvider {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy