InfiniteQuerySuccessObject
data class InfiniteQuerySuccessObject<T, S>(val reply: Reply<T>, val replyUpdatedAt: Long, val error: Throwable?, val errorUpdatedAt: Long, val staleAt: Long, val fetchStatus: QueryFetchStatus, val isInvalidated: Boolean, val refresh: suspend () -> Unit, val loadMore: suspend (param: S) -> Unit, val loadMoreParam: S?) : InfiniteQueryObject<T, S>
A InfiniteQuerySuccessObject represents the successful state of the InfiniteQueryObject.
Parameters
T
Type of data to retrieve.
S
Type of parameter.