Searched defs:AsyncTask (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/os/
H A DAsyncTaskCompatHoneycomb.java19 import android.os.AsyncTask;
22 * Implementation of AsyncTask compatibility that can call Honeycomb APIs.
27 AsyncTask<Params, Progress, Result> task,
29 task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, params);
26 executeParallel( AsyncTask<Params, Progress, Result> task, Params... params) argument
/frameworks/support/v4/java/android/support/v4/os/
H A DAsyncTaskCompat.java19 import android.os.AsyncTask;
23 * Helper for accessing features in {@link android.os.AsyncTask}
30 * on a pool of threads managed by {@link android.os.AsyncTask}.
32 * @param task The {@link android.os.AsyncTask} to execute.
34 * @return the instance of AsyncTask.
36 public static <Params, Progress, Result> AsyncTask<Params, Progress, Result> executeParallel( argument
37 AsyncTask<Params, Progress, Result> task,
/frameworks/base/core/java/android/os/
H A DAsyncTask.java35 * <p>AsyncTask enables proper and easy use of the UI thread. This class allows to
39 * <p>AsyncTask is designed to be a helper class around {@link Thread} and {@link Handler}
60 * <p>AsyncTask must be subclassed to be used. The subclass will override at least
66 * private class DownloadFilesTask extends AsyncTask&lt;URL, Integer, Long&gt; {
94 * <h2>AsyncTask's generic types</h2>
107 * private class MyTask extends AsyncTask&lt;Void, Void, Void&gt; { ... }
147 * <li>The AsyncTask class must be loaded on the UI thread. This is done
158 * <p>AsyncTask guarantees that all callback calls are synchronized in such a way that the following
177 public abstract class AsyncTask<Params, Progress, Result> { class
178 private static final String LOG_TAG = "AsyncTask";
285 public AsyncTask() { method in class:AsyncTask
[all...]

Completed in 537 milliseconds