All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.execution.incremental.IncrementalCall Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.execution.incremental;

import graphql.incremental.IncrementalPayload;

import java.util.concurrent.CompletableFuture;

/**
 * Represents an incremental call (resulted from the usage of @defer or @stream).
 *
 * @param  the type of the payload that this call resolves.
 */
public interface IncrementalCall {
    CompletableFuture invoke();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy