Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
Lazily invokes some the first time await or join is called.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
internal class LazyResetsImpl<out T : Any>(val resetManager: ResetManager, val valueFactory: () -> T) : LazyResets<T>
Link copied to clipboard
Link copied to clipboard
class RealResetManager(val delegates: MutableCollection<Resets> = mutableListOf()) : DisposableHandle, ResetManager
Link copied to clipboard
Link copied to clipboard
Functions
Link copied to clipboard
fun <E> Lazy<Set<E>>.asDataSource(priority: LazySet.DataSource.Priority = MEDIUM): LazySet.DataSource<E>
fun <E> LazyDeferred<Set<E>>.asDataSource(priority: LazySet.DataSource.Priority = MEDIUM): LazySet.DataSource<E>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
internal fun <E> createLazySet(children: Collection<LazySet<E>>, sources: Collection<LazySet.DataSource<E>>): LazySet<E>
Link copied to clipboard
fun <E> dataSource(priority: LazySet.DataSource.Priority = MEDIUM, factory: suspend () -> Set<E>): LazySet.DataSource<E>
fun <E> dataSource(priority: LazySet.DataSource.Priority = MEDIUM, factory: LazyDeferred<Set<E>>): LazySet.DataSource<E>
Link copied to clipboard
fun <E> dataSourceOf(vararg elements: E, priority: LazySet.DataSource.Priority = MEDIUM): LazySet.DataSource<E>
Link copied to clipboard
Link copied to clipboard
Lazily invokes action the first time await or join is called.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard