All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ru.astrainteractive.klibs.paging.context.PageContext.kt Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
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