temporalFlow

actual fun <T> temporalFlow(factory: () -> T): Flow<T>
expect fun <T> temporalFlow(factory: () -> T): Flow<T>

Creates a flow that updates on temporal events. Frequency of updates is platform dependent, but should not be more infrequent than approximately once a minute.

The flow returned by this is conflated.

actual fun <T> temporalFlow(factory: () -> T): Flow<T>
actual fun <T> temporalFlow(factory: () -> T): Flow<T>