graphql.spring.web.servlet.ExecutionResultHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-spring-webmvc Show documentation
Show all versions of graphql-java-spring-webmvc Show documentation
GraphQL Java Spring Webmvc integration
The newest version!
package graphql.spring.web.servlet;
import graphql.ExecutionResult;
import graphql.PublicSpi;
import java.util.concurrent.CompletableFuture;
@PublicSpi
public interface ExecutionResultHandler {
Object handleExecutionResult(CompletableFuture executionResultCF);
}