Class SimpleInstrumentation
- java.lang.Object
-
- graphql.execution.instrumentation.SimpleInstrumentation
-
- All Implemented Interfaces:
Instrumentation
@PublicApi @Deprecated public class SimpleInstrumentation extends java.lang.Object implements Instrumentation
Deprecated.useSimplePerformantInstrumentationinstead as a base class.An implementation ofInstrumentationthat does nothing. It can be used as a base for derived classes where you only implement the methods you want to. With all the methods inInstrumentationnow defaulted (post Java 6) this class is really not needed anymore but has been retained for backwards compatibility reasons.
-
-
Field Summary
Fields Modifier and Type Field Description static SimpleInstrumentationINSTANCEDeprecated.A singleton instance of aInstrumentationthat does nothing
-
Constructor Summary
Constructors Constructor Description SimpleInstrumentation()Deprecated.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface graphql.execution.instrumentation.Instrumentation
beginExecuteOperation, beginExecuteOperation, beginExecution, beginExecution, beginExecutionStrategy, beginExecutionStrategy, beginField, beginField, beginFieldComplete, beginFieldComplete, beginFieldFetch, beginFieldFetch, beginFieldListComplete, beginFieldListComplete, beginParse, beginParse, beginSubscribedFieldEvent, beginSubscribedFieldEvent, beginValidation, beginValidation, createState, createState, createStateAsync, instrumentDataFetcher, instrumentDataFetcher, instrumentDocumentAndVariables, instrumentDocumentAndVariables, instrumentExecutionContext, instrumentExecutionContext, instrumentExecutionInput, instrumentExecutionInput, instrumentExecutionResult, instrumentExecutionResult, instrumentSchema, instrumentSchema
-
-
-
-
Field Detail
-
INSTANCE
public static final SimpleInstrumentation INSTANCE
Deprecated.A singleton instance of aInstrumentationthat does nothing
-
-