Lines Matching refs:doInBackground

42  * and 4 steps, called <code>onPreExecute</code>, <code>doInBackground</code>,
54 * one method ({@link #doInBackground}), and most often will override a
60 * protected Long doInBackground(URL... urls) {
107 * <li>{@link #doInBackground}, invoked on the background thread
129 * {@link #onPostExecute(Object)} will be invoked after {@link #doInBackground(Object[])}
132 * {@link #doInBackground(Object[])}, if possible (inside a loop for instance.)</p>
141 * {@link #doInBackground}, {@link #onProgressUpdate} manually.</li>
151 * in {@link #doInBackground}.
152 * <li>Set member fields in {@link #doInBackground}, and refer to them in
264 return postResult(doInBackground(mParams));
278 throw new RuntimeException("An error occured while executing doInBackground()",
284 + "doInBackground()", t);
329 protected abstract Result doInBackground(Params... params);
332 * Runs on the UI thread before {@link #doInBackground}.
335 * @see #doInBackground
341 * <p>Runs on the UI thread after {@link #doInBackground}. The
342 * specified result is the value returned by {@link #doInBackground}.</p>
346 * @param result The result of the operation computed by {@link #doInBackground}.
349 * @see #doInBackground
363 * @see #doInBackground
371 * {@link #doInBackground(Object[])} has finished.</p>
378 * {@link #doInBackground(Object[])}, can be null
394 * {@link #doInBackground(Object[])} has finished.</p>
407 * {@link #doInBackground(Object[])} to end the task as soon as possible.
428 * invoked on the UI thread after {@link #doInBackground(Object[])}
432 * {@link #doInBackground(Object[])} to finish the task as early as
578 * This method can be invoked from {@link #doInBackground} to
589 * @see #doInBackground