android.accounts.AccountManagerFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
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;
}