com.apollographql.apollo3.runtime.java.ApolloCall Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-runtime-java Show documentation
Show all versions of apollo-runtime-java Show documentation
Apollo GraphQL runtime for Java
package com.apollographql.apollo3.runtime.java;
import com.apollographql.apollo3.api.MutableExecutionOptions;
import com.apollographql.apollo3.api.Operation;
import org.jetbrains.annotations.NotNull;
public interface ApolloCall extends MutableExecutionOptions> {
/**
* Schedules the request to be executed at some point in the future.
*
* @param callback Callback which will handle the response or a failure exception.
*/
ApolloDisposable enqueue(@NotNull ApolloCallback callback);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy