graphql.execution.incremental.StreamedCall Maven / Gradle / Ivy
package graphql.execution.incremental;
import graphql.Internal;
import graphql.incremental.StreamPayload;
import java.util.concurrent.CompletableFuture;
/**
* Represents a call that fetches data that was streamed, via the @stream directive.
*
* This is a placeholder class, created to showcase the proposed structure that accommodates both @defer and @stream execution.
*/
@Internal
public class StreamedCall implements IncrementalCall {
@Override
public CompletableFuture invoke() {
throw new UnsupportedOperationException("Not implemented yet.");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy