Searched defs:PageKeyedDataSource (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DPageKeyedDataSource.java31 * Implement a DataSource using PageKeyedDataSource if you need to use data from page {@code N - 1}
37 * shows how to implement a network PageKeyedDataSource using
44 public abstract class PageKeyedDataSource<Key, Value> extends ContiguousDataSource<Key, Value> { class in inherits:ContiguousDataSource
196 * @param data List of items loaded from the PageKeyedDataSource.
207 * Callback for PageKeyedDataSource {@link #loadBefore(LoadParams, LoadCallback)} and
224 * Call this method from your PageKeyedDataSource's
237 * @param data List of items loaded from the PageKeyedDataSource.
247 private final PageKeyedDataSource<Key, Value> mDataSource;
249 LoadInitialCallbackImpl(@NonNull PageKeyedDataSource<Key, Value> dataSource, argument
288 private final PageKeyedDataSource<Ke
289 LoadCallbackImpl(@onNull PageKeyedDataSource<Key, Value> dataSource, @PageResult.ResultType int type, @Nullable Executor mainThreadExecutor, @NonNull PageResult.Receiver<Value> receiver) argument
[all...]

Completed in 54 milliseconds