Loading core/java/android/content/AsyncTaskLoader.java +4 −2 Original line number Diff line number Diff line Loading @@ -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 */ Loading Loading
core/java/android/content/AsyncTaskLoader.java +4 −2 Original line number Diff line number Diff line Loading @@ -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 */ Loading