public class DataLoaderDispatcherInstrumentation extends NoOpInstrumentation
Instrumentation
will dispatch
all the contained DataLoader
s when each level of the graphql
query is executed.
This allows you to use DataLoader
s in your DataFetcher
s
to optimal loading of data.DataLoader
,
DataLoaderRegistry
NoOpInstrumentation.NoOpInstrumentationContext<T>
INSTANCE
Constructor and Description |
---|
DataLoaderDispatcherInstrumentation(org.dataloader.DataLoaderRegistry dataLoaderRegistry)
You pass in a registry of N data loaders which will be
dispatched as
each level of the query executes. |
DataLoaderDispatcherInstrumentation(org.dataloader.DataLoaderRegistry dataLoaderRegistry,
DataLoaderDispatcherInstrumentationOptions options)
You pass in a registry of N data loaders which will be
dispatched as
each level of the query executes. |
Modifier and Type | Method and Description |
---|---|
InstrumentationContext<java.util.concurrent.CompletableFuture<ExecutionResult>> |
beginCompleteFieldList(InstrumentationFieldCompleteParameters parameters)
This is called just before the complete field list is started and when this step finishes the
InstrumentationContext.onEnd(Object, Throwable)
will be called indicating that the step has finished. |
InstrumentationContext<ExecutionResult> |
beginDataFetch(InstrumentationDataFetchParameters parameters)
This is called just before the data fetching stage is started, waits for all data to be completed and when this step finishes the
InstrumentationContext.onEnd(Object, Throwable)
will be called indicating that the step has finished. |
InstrumentationContext<java.util.concurrent.CompletableFuture<ExecutionResult>> |
beginDataFetchDispatch(InstrumentationDataFetchParameters parameters)
This is called just before the data fetching stage is started and finishes as soon as the query is dispatched ready for completion.
|
InstrumentationContext<java.util.Map<java.lang.String,java.util.List<Field>>> |
beginFields(InstrumentationExecutionStrategyParameters parameters)
This is called just before a selection set of fields is resolved and when this step finishes the
InstrumentationContext.onEnd(Object, Throwable)
will be called indicating that the step has finished. |
InstrumentationState |
createState()
This will be called just before execution to create an object that is given back to all instrumentation methods
to allow them to have per execution request state
|
DataFetcher<?> |
instrumentDataFetcher(DataFetcher<?> dataFetcher,
InstrumentationFieldFetchParameters parameters)
This is called to instrument a
DataFetcher just before it is used to fetch a field, allowing you
to adjust what information is passed back or record information about specific data fetches. |
java.util.concurrent.CompletableFuture<ExecutionResult> |
instrumentExecutionResult(ExecutionResult executionResult,
InstrumentationExecutionParameters parameters)
This is called to allow instrumentation to instrument the execution result in some way
|
beginCompleteField, beginExecution, beginExecutionStrategy, beginField, beginFieldFetch, beginParse, beginValidation, instrumentExecutionContext, instrumentSchema
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
instrumentExecutionInput
public DataLoaderDispatcherInstrumentation(org.dataloader.DataLoaderRegistry dataLoaderRegistry)
dispatched
as
each level of the query executes.dataLoaderRegistry
- the registry of data loaders that will be dispatchedpublic DataLoaderDispatcherInstrumentation(org.dataloader.DataLoaderRegistry dataLoaderRegistry, DataLoaderDispatcherInstrumentationOptions options)
dispatched
as
each level of the query executes.dataLoaderRegistry
- the registry of data loaders that will be dispatchedoptions
- the options to control the behaviourpublic InstrumentationState createState()
Instrumentation
createState
in interface Instrumentation
createState
in class NoOpInstrumentation
public DataFetcher<?> instrumentDataFetcher(DataFetcher<?> dataFetcher, InstrumentationFieldFetchParameters parameters)
Instrumentation
DataFetcher
just before it is used to fetch a field, allowing you
to adjust what information is passed back or record information about specific data fetches. Note
the same data fetcher instance maybe presented to you many times and that data fetcher
implementations widely vary.instrumentDataFetcher
in interface Instrumentation
instrumentDataFetcher
in class NoOpInstrumentation
dataFetcher
- the data fetcher about to be usedparameters
- the parameters describing the field to be fetchedpublic InstrumentationContext<java.util.concurrent.CompletableFuture<ExecutionResult>> beginDataFetchDispatch(InstrumentationDataFetchParameters parameters)
Instrumentation
Instrumentation.beginDataFetch(graphql.execution.instrumentation.parameters.InstrumentationDataFetchParameters)
in that this step does not wait for the values to be completed, only dispatched for completion.beginDataFetchDispatch
in interface Instrumentation
beginDataFetchDispatch
in class NoOpInstrumentation
parameters
- the parameters to this stepInstrumentationContext
object that will be called back when the step endspublic InstrumentationContext<ExecutionResult> beginDataFetch(InstrumentationDataFetchParameters parameters)
Instrumentation
InstrumentationContext.onEnd(Object, Throwable)
will be called indicating that the step has finished.beginDataFetch
in interface Instrumentation
beginDataFetch
in class NoOpInstrumentation
parameters
- the parameters to this stepInstrumentationContext
object that will be called back when the step endspublic InstrumentationContext<java.util.Map<java.lang.String,java.util.List<Field>>> beginFields(InstrumentationExecutionStrategyParameters parameters)
Instrumentation
InstrumentationContext.onEnd(Object, Throwable)
will be called indicating that the step has finished.beginFields
in interface Instrumentation
beginFields
in class NoOpInstrumentation
parameters
- the parameters to this stepInstrumentationContext
object that will be called back when the step endspublic InstrumentationContext<java.util.concurrent.CompletableFuture<ExecutionResult>> beginCompleteFieldList(InstrumentationFieldCompleteParameters parameters)
Instrumentation
InstrumentationContext.onEnd(Object, Throwable)
will be called indicating that the step has finished.beginCompleteFieldList
in interface Instrumentation
beginCompleteFieldList
in class NoOpInstrumentation
parameters
- the parameters to this stepInstrumentationContext
object that will be called back when the step endspublic java.util.concurrent.CompletableFuture<ExecutionResult> instrumentExecutionResult(ExecutionResult executionResult, InstrumentationExecutionParameters parameters)
Instrumentation
instrumentExecutionResult
in interface Instrumentation
instrumentExecutionResult
in class NoOpInstrumentation
executionResult
- CompletableFuture
of the result to instrumentparameters
- the parameters to this step