commonMain.ru.astrainteractive.klibs.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 Show documentation
Show all versions of paging Show documentation
Kotlin Multiplatform paging library
The newest version!
package ru.astrainteractive.klibs.paging.data
import ru.astrainteractive.klibs.paging.context.PageContext
import ru.astrainteractive.klibs.paging.state.PagingState
/**
* This interface is required to fetch page items from your service depending on current [PagingState]
*/
interface PagedListDataSource {
suspend fun getListResult(pagingState: PagingState): Result>
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy