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

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

The newest version!
package graphql.kickstart.execution.instrumentation;

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

public class NoOpInstrumentationProvider implements InstrumentationProvider {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy