graphql.kickstart.execution.instrumentation.NoOpInstrumentationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-kickstart-javax Show documentation
Show all versions of graphql-java-kickstart-javax Show documentation
relay.js-compatible GraphQL servlet
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;
}
}