commonMain.ru.astrainteractive.klibs.paging.context.PageContext.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
Kotlin Multiplatform paging library
package ru.astrainteractive.klibs.paging.context
/**
* [PageContext] is the description of your current page.
*
* It can be anything, but mostly page described as number, [Int] - number of page for example
*
* @see IntPageContext
*/
interface PageContext {
/**
* Factory is required to generate next or previous page context
*
* @see IntPageContext.Factory
*/
interface Factory {
fun next(pageContext: T): T
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy