graphql.execution.nextgen.ExecutionStrategy Maven / Gradle / Ivy
package graphql.execution.nextgen;
import graphql.ExecutionResult;
import graphql.Internal;
import graphql.execution.ExecutionContext;
import java.util.concurrent.CompletableFuture;
/**
* @deprecated Jan 2022 - We have decided to deprecate the NextGen engine, and it will be removed in a future release.
*/
@Deprecated
@Internal
public interface ExecutionStrategy {
CompletableFuture execute(ExecutionContext context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy