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

commonMain.me.aartikov.replica.paged.PagedFetcher.kt Maven / Gradle / Ivy

package me.aartikov.replica.paged

interface PagedFetcher> {

    suspend fun fetchFirstPage(): P

    suspend fun fetchNextPage(currentData: PagedData): P

    suspend fun fetchPreviousPage(currentData: PagedData): P {
        throw UnsupportedOperationException()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy