Back to project page osu-taste-portable.
The source code is released under:
Apache License
If you think the Android project osu-taste-portable listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dgsrz.osuTaste.loaders; // www . ja v a 2s.c om import android.content.Context; import android.support.v4.content.AsyncTaskLoader; /** * <a href="http://code.google.com/p/android/issues/detail?id=14944">Issue * 14944</a> * * @author Alexander Blom */ public abstract class WrappedAsyncTaskLoader<D> extends AsyncTaskLoader<D> { private D mData; /** * Constructor of <code>WrappedAsyncTaskLoader</code> * * @param context The {@link Context} to use. */ public WrappedAsyncTaskLoader(Context context) { super(context); } /** * {@inheritDoc} */ @Override public void deliverResult(D data) { if (!isReset()) { this.mData = data; super.deliverResult(data); } else { // An asynchronous query came in while the loader is stopped } } /** * {@inheritDoc} */ @Override protected void onStartLoading() { if (this.mData != null) { deliverResult(this.mData); } else if (takeContentChanged() || this.mData == null) { forceLoad(); } } /** * {@inheritDoc} */ @Override protected void onStopLoading() { // Attempt to cancel the current load task if possible cancelLoad(); } /** * {@inheritDoc} */ @Override protected void onReset() { super.onReset(); // Ensure the loader is stopped onStopLoading(); this.mData = null; } }