Package-level declarations

Properties

Link copied to clipboard

How long to wait for contact data before giving up.

Inherited functions

Link copied to clipboard
fun <T> Flow<T>.airshipFailIfSlowToStart(timeout: Duration, message: String): Flow<T>

Fails if the flow does not produce a first value within timeout. Later gaps are allowed.

Link copied to clipboard

Converts basic markdown to HTML.

Link copied to clipboard
fun <T, R> Flow<T>.airshipScanConcat(initial: R, transform: suspend (accumulator: R, value: T) -> Flow<R>): Flow<R>

Folds the given flow with operation, emitting every intermediate result, including initial value as a flattened sequence of emissions.