InfiniteQueryRefreshErrorObject
data class InfiniteQueryRefreshErrorObject<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 InfiniteQueryRefreshErrorObject represents the refresh error state of the InfiniteQueryObject.
This state is used when the data is successfully retrieved once, but an error occurs during the refresh or additional fetching.
Parameters
T
Type of data to retrieve.
S
Type of parameter.