QueryChunk

data class QueryChunk<T, S>(val data: T, val param: S)

Data chunk type that holds values in combination with param related to data.

In InfiniteQueryKey, multiple data fetches are performed due to additional retrieval. QueryChunk is a data structure for holding the result of one fetch. QueryChunks holds multiple QueryChunk results.

Constructors

Link copied to clipboard
constructor(data: T, param: S)

Properties

Link copied to clipboard
val data: T
Link copied to clipboard
val param: S