ItemKeyedDataSource.LoadCallback
public
static
abstract
class
ItemKeyedDataSource.LoadCallback
extends Object
loadInitial(LoadInitialParams, LoadInitialCallback)
to return data and, optionally, position/count information.
Callback for ItemKeyedDataSource loadBefore(LoadParams, LoadCallback)
and loadAfter(LoadParams, LoadCallback) to return data.
A callback can be called only once, and will throw if called again.
It is always valid for a DataSource loading method that takes a callback to stash the callback and call it later. This enables DataSources to be fully asynchronous, and to handle temporary, recoverable error states (such as a network error that can be retried).
Summary
Public constructors | |
|---|---|
ItemKeyedDataSource.LoadCallback()
|
|
Public methods | |
|---|---|
abstract
void
|
onResult(List<Value> data)
Called to pass loaded data from a DataSource. |
Inherited methods | |
|---|---|
|
From class
java.lang.Object
Object
clone()
boolean
equals(Object arg0)
void
finalize()
final
Class<?>
getClass()
int
hashCode()
final
void
notify()
final
void
notifyAll()
String
toString()
final
void
wait(long arg0, int arg1)
final
void
wait(long arg0)
final
void
wait()
| |
Public constructors
ItemKeyedDataSource.LoadCallback
ItemKeyedDataSource.LoadCallback ()
Public methods
onResult
void onResult (List<Value> data)
Called to pass loaded data from a DataSource.
Call this method from your ItemKeyedDataSource's
loadBefore(LoadParams, LoadCallback) and
loadAfter(LoadParams, LoadCallback) methods to return data.
Call this from loadInitial(LoadInitialParams, LoadInitialCallback) to
initialize without counting available data, or supporting placeholders.
It is always valid to pass a different amount of data than what is requested. Pass an empty list if there is no more data to load.
| Parameters | |
|---|---|
data |
List: List of items loaded from the ItemKeyedDataSource.
|
Interfaces
Classes
- AsyncPagedListDiffer
- DataSource
- DataSource.Factory
- ItemKeyedDataSource
- ItemKeyedDataSource.LoadCallback
- ItemKeyedDataSource.LoadInitialCallback
- ItemKeyedDataSource.LoadInitialParams
- ItemKeyedDataSource.LoadParams
- LivePagedListBuilder
- PagedList
- PagedList.BoundaryCallback
- PagedList.Builder
- PagedList.Callback
- PagedList.Config
- PagedList.Config.Builder
- PagedListAdapter
- PageKeyedDataSource
- PageKeyedDataSource.LoadCallback
- PageKeyedDataSource.LoadInitialCallback
- PageKeyedDataSource.LoadInitialParams
- PageKeyedDataSource.LoadParams
- PositionalDataSource
- PositionalDataSource.LoadInitialCallback
- PositionalDataSource.LoadInitialParams
- PositionalDataSource.LoadRangeCallback
- PositionalDataSource.LoadRangeParams
- RxPagedListBuilder
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025年02月10日 UTC.