AsyncTaskLoader
abstract class AsyncTaskLoader<D> : Loader
CursorLoader |
Static library support version of the framework's |
Static library support version of the framework's android.content.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.
Summary
Public constructors |
|---|
AsyncTaskLoader(context: Context) |
Public functions |
|
|---|---|
Unit |
Called on the main thread to abort a load in progress. |
Unit |
This function is deprecated. Consider using |
Boolean |
Returns true if the current invocation of |
abstract D? |
Called on a worker thread to perform the actual load and to return the result of the load operation. |
Unit |
onCanceled(data: D?)Called if the task was canceled before it was completed. |
Unit |
setUpdateThrottle(delayMS: Long)Set amount to throttle updates by. |
Protected functions |
|
|---|---|
Executor |
|
Boolean |
Subclasses must implement this to take care of requests to |
Unit |
Subclasses must implement this to take care of requests to |
D? |
Calls |
Inherited functions |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Public constructors
Public functions
cancelLoadInBackground
fun cancelLoadInBackground(): Unit
Called on the main thread to abort a load in progress. Override this method to abort the current invocation of loadInBackground that is running in the background on a worker thread. This method should do nothing if loadInBackground has not started running or if it has already finished.
| See also | |
|---|---|
loadInBackground |
dump
fundump(
prefix: String!,
fd: FileDescriptor!,
writer: PrintWriter!,
args: Array<String!>!
): Unit
isLoadInBackgroundCanceled
fun isLoadInBackgroundCanceled(): Boolean
Returns true if the current invocation of loadInBackground is being canceled.
| Returns | |
|---|---|
Boolean |
True if the current invocation of |
| See also | |
|---|---|
loadInBackground |
loadInBackground
abstract fun loadInBackground(): D?
Called on a worker thread to perform the actual load and to return the result of the load operation. Implementations should not deliver the result directly, but should return them from this method, which will eventually end up calling deliverResult on the UI thread. If implementations need to process the results on the UI thread they may override deliverResult and do so there. To support cancellation, this method should periodically check the value of isLoadInBackgroundCanceled and terminate when it returns true. Subclasses may also override cancelLoadInBackground to interrupt the load directly instead of polling isLoadInBackgroundCanceled. When the load is canceled, this method may either return normally or throw OperationCanceledException. In either case, the Loader will call onCanceled to perform post-cancellation cleanup and to dispose of the result object, if any.
| Returns | |
|---|---|
D? |
The result of the load operation. |
| Throws | |
|---|---|
androidx.core.os.OperationCanceledException |
if the load is canceled during execution. |
onCanceled
fun onCanceled(data: D?): Unit
Called if the task was canceled before it was completed. Gives the class a chance to clean up post-cancellation and to properly dispose of the result.
| Parameters | |
|---|---|
data: D? |
The value that was returned by |
setUpdateThrottle
fun setUpdateThrottle(delayMS: Long): Unit
Set amount to throttle updates by. This is the minimum time from when the last loadInBackground call has completed until a new load is scheduled.
| Parameters | |
|---|---|
delayMS: Long |
Amount of delay, in milliseconds. |
Protected functions
getExecutor
protected fun getExecutor(): Executor
Returns the Executor to use for this Loader's AsyncTasks. By default THREAD_POOL_EXECUTOR will be used. Override this method to return a custom executor. Note that this method will only be called once before this Loader's first AsyncTask is run. It is up to the Loader to shut down the Executor at the appropriate place (e.g. in onAbandon) if necessary.
onCancelLoad
protected fun onCancelLoad(): Boolean
Subclasses must implement this to take care of requests to cancelLoad. This will always be called from the process's main thread.
| Returns | |
|---|---|
Boolean |
Returns false if the task could not be canceled, typically because it has already completed normally, or because |
onForceLoad
protected fun onForceLoad(): Unit
Subclasses must implement this to take care of requests to forceLoad. This will always be called from the process's main thread.
onLoadInBackground
protected fun onLoadInBackground(): D?
Calls loadInBackground. This method is reserved for use by the loader framework. Subclasses should override loadInBackground instead of this method.
| Returns | |
|---|---|
D? |
The result of the load operation. |
| Throws | |
|---|---|
androidx.core.os.OperationCanceledException |
if the load is canceled during execution. |
| See also | |
|---|---|
loadInBackground |