android.os.AsyncTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
The newest version!
package android.os;
public abstract class AsyncTask
{
public static enum Status
{
FINISHED(),
PENDING(),
RUNNING();
}
public AsyncTask() { throw new RuntimeException("Stub!"); }
public final android.os.AsyncTask.Status getStatus() { throw new RuntimeException("Stub!"); }
protected abstract Result doInBackground(Params... params);
protected void onPreExecute() { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"UnusedDeclaration"})
protected void onPostExecute(Result result) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"UnusedDeclaration"})
protected void onProgressUpdate(Progress... values) { throw new RuntimeException("Stub!"); }
@java.lang.SuppressWarnings(value={"UnusedParameters"})
protected void onCancelled(Result result) { throw new RuntimeException("Stub!"); }
protected void onCancelled() { throw new RuntimeException("Stub!"); }
public final boolean isCancelled() { throw new RuntimeException("Stub!"); }
public final boolean cancel(boolean mayInterruptIfRunning) { throw new RuntimeException("Stub!"); }
public final Result get() throws java.lang.InterruptedException, java.util.concurrent.ExecutionException { throw new RuntimeException("Stub!"); }
public final Result get(long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException { throw new RuntimeException("Stub!"); }
public final android.os.AsyncTask execute(Params... params) { throw new RuntimeException("Stub!"); }
public final android.os.AsyncTask executeOnExecutor(java.util.concurrent.Executor exec, Params... params) { throw new RuntimeException("Stub!"); }
public static void execute(java.lang.Runnable runnable) { throw new RuntimeException("Stub!"); }
protected final void publishProgress(Progress... values) { throw new RuntimeException("Stub!"); }
public static final java.util.concurrent.Executor THREAD_POOL_EXECUTOR;
public static final java.util.concurrent.Executor SERIAL_EXECUTOR;
static { THREAD_POOL_EXECUTOR = null; SERIAL_EXECUTOR = null; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy