|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.content.Loader<D>
android.support.v4.content.AsyncTaskLoader<D>
public abstract class AsyncTaskLoader<D>
Static library support version of the framework's AsyncTaskLoader
.
Used to write apps that run on platforms prior to Android 3.0. When running
on Android 3.0 or above, this implementation is still used; it does not try
to switch to the framework's implementation. See the framework SDK
documentation for a class overview.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class android.support.v4.content.Loader |
---|
Loader.ForceLoadContentObserver, Loader.OnLoadCompleteListener<D> |
Constructor Summary | |
---|---|
AsyncTaskLoader(android.content.Context context)
|
Method Summary | |
---|---|
boolean |
cancelLoad()
Attempt to cancel the current load task. |
void |
dump(String prefix,
FileDescriptor fd,
PrintWriter writer,
String[] args)
Print the Loader's state into the given stream. |
abstract D |
loadInBackground()
|
void |
onCanceled(D data)
Called if the task was canceled before it was completed. |
protected void |
onForceLoad()
Subclasses must implement this to take care of requests to Loader.forceLoad() . |
protected D |
onLoadInBackground()
Called on a worker thread to perform the actual load. |
void |
setUpdateThrottle(long delayMS)
Set amount to throttle updates by. |
void |
waitForLoader()
Locks the current thread until the loader completes the current load operation. |
Methods inherited from class android.support.v4.content.Loader |
---|
abandon, dataToString, deliverResult, forceLoad, getContext, getId, isAbandoned, isReset, isStarted, onAbandon, onContentChanged, onReset, onStartLoading, onStopLoading, registerListener, reset, startLoading, stopLoading, takeContentChanged, toString, unregisterListener |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public AsyncTaskLoader(android.content.Context context)
Method Detail |
---|
public void setUpdateThrottle(long delayMS)
onLoadInBackground()
call has completed until
a new load is scheduled.
delayMS
- Amount of delay, in milliseconds.protected void onForceLoad()
Loader
Loader.forceLoad()
.
This will always be called from the process's main thread.
onForceLoad
in class Loader<D>
public boolean cancelLoad()
AsyncTask.cancel(boolean)
for more info. Must be called on the main thread of the process.
Cancelling is not an immediate operation, since the load is performed in a background thread. If there is currently a load in progress, this method requests that the load be cancelled, and notes this is the case; once the background thread has completed its work its remaining state will be cleared. If another load request comes in during this time, it will be held until the cancelled load is complete.
Loader.startLoading()
hasn't been called; returns
true otherwise.public void onCanceled(D data)
public abstract D loadInBackground()
protected D onLoadInBackground()
Loader.deliverResult(D)
on the UI thread. If implementations need to process
the results on the UI thread they may override Loader.deliverResult(D)
and do so
there.
public void waitForLoader()
Use for testing only. Never call this from a UI thread.
public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args)
Loader
dump
in class Loader<D>
prefix
- Text to print at the front of each line.fd
- The raw file descriptor that the dump is being sent to.writer
- A PrintWriter to which the dump is to be set.args
- Additional arguments to the dump request.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |