commonMain.com.makeevrserg.mobilex.paging.data.PagedListDataSource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paging-jvm Show documentation
Show all versions of paging-jvm Show documentation
KMM library with frequently used code
package com.makeevrserg.mobilex.paging.data
import com.makeevrserg.mobilex.paging.state.PagingState
/**
* Default paged list interface
*/
interface PagedListDataSource {
suspend fun getList(pagingState: PagingState): List?
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy