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

/frameworks/support/paging/common/src/main/java/android/arch/paging/
H A DTiledDataSource.java27 * Extend TiledDataSource if you want to load arbitrary pages based solely on position information,
30 * Room can generate a TiledDataSource for you:
35 * public abstract TiledDataSource<User> loadUsersByAgeDesc();
49 * public class OffsetUserQueryDataSource extends TiledDataSource<User> {
85 * @param <Type> Type of items being loaded by the TiledDataSource.
87 public abstract class TiledDataSource<Type> extends DataSource<Integer, Type> { class in inherits:DataSource
107 * enable TiledDataSource to navigate tiles efficiently, and quickly accesss any position in the
137 final TiledDataSource<Value> mTiledDataSource;
139 TiledAsBoundedDataSource(TiledDataSource<Value> tiledDataSource) {

Completed in 66 milliseconds