graphql.execution.incremental.IncrementalCall Maven / Gradle / Ivy
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