ContainerPagingSource
class ContainerPagingSource<T : Any>(loadBackend: suspend (PaginationOffset?) -> PageContainer<T>) : PagingSource<PaginationOffset, T>
Base paging source container for implementation paging with using Pager
Parameters
loadBackend
Lambda for getting new page from backend
Functions
Link copied to clipboard
Link copied to clipboard
open suspend override fun load(params: PagingSource.LoadParams<PaginationOffset>): PagingSource.LoadResult<PaginationOffset, T>