graphql.execution.instrumentation.dataloader.DataLoaderDispatcherInstrumentationState Maven / Gradle / Ivy
package graphql.execution.instrumentation.dataloader;
import graphql.execution.instrumentation.InstrumentationState;
/**
* A base class that keeps track of whether aggressive batching can be used
*/
public class DataLoaderDispatcherInstrumentationState implements InstrumentationState {
private boolean aggressivelyBatching = true;
boolean isAggressivelyBatching() {
return aggressivelyBatching;
}
void setAggressivelyBatching(boolean aggressivelyBatching) {
this.aggressivelyBatching = aggressivelyBatching;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy