LazyListPrefetchScope



Scope for callbacks in LazyListPrefetchStrategy which allows prefetches to be requested.

Summary

Public functions

LazyLayoutPrefetchState.PrefetchHandle

Schedules a prefetch for the given index.

Cmn

Public functions

schedulePrefetch

fun schedulePrefetch(index: Int): LazyLayoutPrefetchState.PrefetchHandle

Schedules a prefetch for the given index. Requests are executed in the order they're requested. If a requested prefetch is no longer necessary (for example, due to changing scroll direction), the request should be canceled via LazyLayoutPrefetchState.PrefetchHandle.cancel.

See PrefetchExecutor.