Lines Matching defs:doInBackground

49  * and 4 steps, called <code>onPreExecute</code>, <code>doInBackground</code>,
61 * one method ({@link #doInBackground}), and most often will override a
67 * protected Long doInBackground(URL... urls) {
116 * <li>{@link #doInBackground}, invoked on the background thread
138 * {@link #onPostExecute(Object)} will be invoked after {@link #doInBackground(Object[])}
141 * {@link #doInBackground(Object[])}, if possible (inside a loop for instance.)</p>
152 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
162 * in {@link #doInBackground}.
163 * <li>Set member fields in {@link #doInBackground}, and refer to them in
287 return postResult(doInBackground(mParams));
299 throw new RuntimeException("An error occured while executing doInBackground()",
348 protected abstract Result doInBackground(Params... params);
351 * Runs on the UI thread before {@link #doInBackground}.
354 * @see #doInBackground
360 * <p>Runs on the UI thread after {@link #doInBackground}. The
361 * specified result is the value returned by {@link #doInBackground}.</p>
365 * @param result The result of the operation computed by {@link #doInBackground}.
368 * @see #doInBackground
382 * @see #doInBackground
390 * {@link #doInBackground(Object[])} has finished.</p>
397 * {@link #doInBackground(Object[])}, can be null
413 * {@link #doInBackground(Object[])} has finished.</p>
426 * {@link #doInBackground(Object[])} to end the task as soon as possible.
447 * invoked on the UI thread after {@link #doInBackground(Object[])}
451 * {@link #doInBackground(Object[])} to finish the task as early as
607 * This method can be invoked from {@link #doInBackground} to
618 * @see #doInBackground