Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package graphql.execution.instrumentation;
import graphql.ExecutionResult;
import graphql.PublicApi;
import graphql.execution.instrumentation.parameters.InstrumentationExecuteOperationParameters;
import graphql.execution.instrumentation.parameters.InstrumentationExecutionParameters;
import graphql.execution.instrumentation.parameters.InstrumentationExecutionStrategyParameters;
import graphql.execution.instrumentation.parameters.InstrumentationFieldCompleteParameters;
import graphql.execution.instrumentation.parameters.InstrumentationFieldFetchParameters;
import graphql.execution.instrumentation.parameters.InstrumentationFieldParameters;
import graphql.execution.instrumentation.parameters.InstrumentationValidationParameters;
import graphql.language.Document;
import graphql.validation.ValidationError;
import org.jetbrains.annotations.Nullable;
import java.util.List;
import java.util.function.BiConsumer;
/**
* This version of {@link ChainedInstrumentation} will call a list of {@link Instrumentation}s
* but it will never back on the returned {@link InstrumentationContext} objects, hence it is only suitable to
* certain use cases.
*
* Only use this class if you are optimising for memory usage as scale. In most cases the {@link ChainedInstrumentation}
* will do the job required with all the instrumentation features used however some users require the fastest performance and lowest memory
* usage at scale and this class can be used.
*
* At scale, the fact that the graphql engine holds the {@link InstrumentationContext} objects in memory for a (relatively) long time
* (the length of the request or the length of a large field fetch) means that memory pressure can grow
* and objects move into longer tenure GC pools. Holding these contexts is also not necessary if the instrumentation never needs to know when a
* certain execution step finishes.
*
* The {@link InstrumentationContext} is used ot know when an execution step has completed, so instrumentations that do
* timings say need to use this callback mechanism. Putting such an instrumentation into {@link NoContextChainedInstrumentation} would
* be a mistake because no callback will occur. Therefore, use of this class is reserved for very specific us cases. You are fore-warned.
*
* This class never holds onto the returned {@link InstrumentationContext} objects and always returns null
* as itself.
*/
@PublicApi
public class NoContextChainedInstrumentation extends ChainedInstrumentation {
public NoContextChainedInstrumentation(List instrumentations) {
super(instrumentations);
}
public NoContextChainedInstrumentation(Instrumentation... instrumentations) {
super(instrumentations);
}
private T runAll(InstrumentationState state, BiConsumer stateConsumer) {
chainedConsume(state, stateConsumer);
return null;
}
@Override
public InstrumentationContext beginExecution(InstrumentationExecutionParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginExecution(parameters, specificState));
}
@Override
public InstrumentationContext beginParse(InstrumentationExecutionParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginParse(parameters, specificState));
}
@Override
public InstrumentationContext> beginValidation(InstrumentationValidationParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginValidation(parameters, specificState));
}
@Override
public InstrumentationContext beginExecuteOperation(InstrumentationExecuteOperationParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginExecuteOperation(parameters, specificState));
}
@Override
public ExecutionStrategyInstrumentationContext beginExecutionStrategy(InstrumentationExecutionStrategyParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginExecutionStrategy(parameters, specificState));
}
@Override
public @Nullable ExecuteObjectInstrumentationContext beginExecuteObject(InstrumentationExecutionStrategyParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginExecuteObject(parameters, specificState));
}
@Override
public InstrumentationContext beginSubscribedFieldEvent(InstrumentationFieldParameters parameters, InstrumentationState state) {
return runAll(state, (instrumentation, specificState) -> instrumentation.beginSubscribedFieldEvent(parameters, specificState));
}
@Override
public @Nullable InstrumentationContext