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

android.accounts.AccountManagerFuture Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.accounts;
public interface AccountManagerFuture
{
public abstract  boolean cancel(boolean mayInterruptIfRunning);
public abstract  boolean isCancelled();
public abstract  boolean isDone();
public abstract  V getResult() throws android.accounts.OperationCanceledException, java.io.IOException, android.accounts.AuthenticatorException;
public abstract  V getResult(long timeout, java.util.concurrent.TimeUnit unit) throws android.accounts.OperationCanceledException, java.io.IOException, android.accounts.AuthenticatorException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy