ItemKeyedDataSource.LoadParams

public static class ItemKeyedDataSource.LoadParams
extends Object

java.lang.Object
   ↳ android.arch.paging.ItemKeyedDataSource.LoadParams<Key>


Holder object for inputs to loadBefore(LoadParams, LoadCallback) and loadAfter(LoadParams, LoadCallback).

Summary

Fields

public final Key key

Load items before/after this key.

public final int requestedLoadSize

Requested number of items to load.

Public constructors

ItemKeyedDataSource.LoadParams(Key key, int requestedLoadSize)

Inherited methods

Fields

key

Key key

Load items before/after this key.

Returned data must begin directly adjacent to this position.

requestedLoadSize

int requestedLoadSize

Requested number of items to load.

Returned page can be of this size, but it may be altered if that is easier, e.g. a network data source where the backend defines page size.

Public constructors

ItemKeyedDataSource.LoadParams

ItemKeyedDataSource.LoadParams (Key key, 
                int requestedLoadSize)

Parameters
key Key

requestedLoadSize int