Package-level declarations

Functions

Link copied to clipboard
fun instantFlow(): Flow<Instant>

Creates a temporalFlow of Instants. Frequency of updates is platform dependent, but should not be more infrequent than approximately once a minute.

Link copied to clipboard
fun localDateFlow(): Flow<LocalDate>

Creates a temporalFlow of LocalDates. Frequency of updates is platform dependent, but should not be more infrequent than approximately once a minute.

Link copied to clipboard
fun localDateTimeFlow(): Flow<LocalDateTime>

Creates a temporalFlow of LocalDateTimes. Frequency of updates is platform dependent, but should not be more infrequent than approximately once a minute.

Link copied to clipboard
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.

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