LoadRangeParams
Kotlin
|Java
open class LoadRangeParams
kotlin.Any | |
↳ | androidx.paging.PositionalDataSource.LoadRangeParams |
Holder object for inputs to loadRange.
Summary
Public constructors | |
---|---|
Holder object for inputs to loadRange. |
Properties | |
---|---|
Int |
Number of items to load. |
Int |
START position of data to load. |
Public constructors
Properties
loadSize
val loadSize: Int
Number of items to load.
Returned data must be of this size, unless at end of the list.
startPosition
val startPosition: Int
START position of data to load.
Returned data must start at this position.