doForAllWithCurrentPaging and fun interface for elements in ktor server

This commit is contained in:
2021-06-14 22:04:39 +06:00
parent 6ff3f6ae42
commit a16815143c
6 changed files with 24 additions and 12 deletions

View File

@@ -33,3 +33,8 @@ suspend fun <T> doAllWithCurrentPaging(
block
)
}
suspend fun <T> doForAllWithCurrentPaging(
initialPagination: Pagination = FirstPagePagination(),
block: suspend (Pagination) -> PaginationResult<T>
) = doAllWithCurrentPaging(initialPagination, block)