com.apollographql.apollo3.runtime.java.ApolloDisposable 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;
public interface ApolloDisposable {
void dispose();
boolean isDisposed();
void addListener(Listener listener);
void removeListener(Listener listener);
interface Listener {
void onDisposed();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy