An alternative to retry()
is retryWhen()
. This takes a lambda expression that
is passed the exception along with the number of times we have retried the
Flow
so far. If the lambda expression returns true
, we retry the Flow
again. If the lambda expression returns false
, the exception continues along
to the FlowCollector
.
The lambda expression might look at the exception and choose different rules based upon details of the exception (e.g., exception type).
You can learn more about this in:
Tags:
xxxxxxxxxx
1
import kotlinx.coroutines.*
2
import kotlinx.coroutines.flow.*
3
import kotlin.random.Random
4
5
fun main() {
6
GlobalScope.launch(Dispatchers.Main) {
7
val myFlow = randomPercentages(10, 200)
8
9
try {
10
myFlow
11
.retryWhen { ex, count -> count < 3 }
12
.collect { println(it) }
13
} catch (ex: Exception) {
14
println("We crashed! $ex")
15
}
16
17
println("That's all folks!")
18
}
19
20
println("...and we're off!")
21
}
22
23
fun randomPercentages(count: Int, delayMs: Long) = flow {
24
for (i in 0 until count) {
25
delay(delayMs)
26
emit(Random.nextInt(1,100))
27
throw RuntimeException("ick!")
28
}
29
}