Java tutorial
//package com.java2s; import android.accounts.AccountManagerFuture; public class Main { private static void waitForAccountToBeRemoved(AccountManagerFuture<Boolean> removeAccount) { while (!removeAccount.isDone()) { } } }