Abstract Paging Object
abstract class AbstractPagingObject<T : Any, Z : AbstractPagingObject<T, Z>> : PagingObjectBase<T, Z> , List<T?>
Content copied to clipboard
The offset-based paging object is a container for a set of objects. It contains a key called items (whose value is an array of the requested objects) along with other keys like previous, next and limit that can be useful in future calls.
Constructors
AbstractPagingObject
Link copied to clipboard
fun AbstractPagingObject()
Content copied to clipboard
Functions
containsAll
Link copied to clipboard
flow
Link copied to clipboard
@FlowPreview()
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowBackward
Link copied to clipboard
flowEndOrdered
Link copied to clipboard
flowForward
Link copied to clipboard
flowOrdered
Link copied to clipboard
@FlowPreview()
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowPagingObjects
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowPagingObjectsOrdered
Link copied to clipboard
@ExperimentalCoroutinesApi()
Content copied to clipboard
flowStartOrdered
Link copied to clipboard
getAllItems
Link copied to clipboard
getAllItemsNotNull
Link copied to clipboard
getAllPagingObjects
Link copied to clipboard
getPrevious
Link copied to clipboard
getWithNext
Link copied to clipboard
Synchronously retrieve the next total paging objects associated with this AbstractPagingObject, including this AbstractPagingObject.
getWithNextItems
Link copied to clipboard
Retrieve the items associated with the next total paging objects associated with this rest action, including the current one.
getWithNextTotalPagingObjects
Link copied to clipboard
open suspend override fun getWithNextTotalPagingObjects(total: Int): List<Z>
Content copied to clipboard
Synchronously retrieve the next total paging objects associated with this PagingObjectBase, including this PagingObjectBase.
lastIndexOf
Link copied to clipboard
listIterator
Link copied to clipboard
Properties
Inheritors
Sources
(source)
Link copied to clipboard