summaryrefslogtreecommitdiff
path: root/core/java/android/content/AsyncTaskLoader.java
diff options
context:
space:
mode:
authorJeff Hamilton <jham@android.com>2010-05-18 10:34:47 -0500
committerJeff Hamilton <jham@android.com>2010-05-18 10:34:47 -0500
commite6c6d09a7eb9a7cd6e94c164e75a08dc499fd577 (patch)
tree8702f1da5696c188784db263d26ca0b212f7baf4 /core/java/android/content/AsyncTaskLoader.java
parente188664f8ad232ab331b36f3c6f892449191ad5d (diff)
Fix a broken docs link.
Change-Id: I2e940165726ecfce306cd143ed049045c927b6a0
Diffstat (limited to 'core/java/android/content/AsyncTaskLoader.java')
-rw-r--r--core/java/android/content/AsyncTaskLoader.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/java/android/content/AsyncTaskLoader.java b/core/java/android/content/AsyncTaskLoader.java
index 52a1b352f378..f0f8b03407f0 100644
--- a/core/java/android/content/AsyncTaskLoader.java
+++ b/core/java/android/content/AsyncTaskLoader.java
@@ -77,8 +77,10 @@ public abstract class AsyncTaskLoader<D> extends Loader<D> {
/**
* Called on a worker thread to perform the actual load. Implementations should not deliver the
- * results directly, but should return them from this method and deliver them from
- * {@link #onPostExecute()}
+ * results directly, but should return them from this method, which will eventually end up
+ * calling {@link #deliverResult(Object)} on the UI thread. If implementations need to process
+ * the results on the UI thread they may override {@link #deliverResult(Object)} and do so
+ * there.
*
* @return the result of the load
*/