Н
Size: a a a
D
D
Н
D
MG
Н
D
D
Н
Н
Н
Н
Н
D
Н
protected suspend fun <T : Any> safeAsync(block: suspend CoroutineScope.() -> T): T? {
return try {
withContext(Dispatchers.IO, block)
} catch (t: Throwable) {
handleError(t)
null
}
}
Н
AP
protected suspend fun <T : Any> safeAsync(block: suspend CoroutineScope.() -> T): T? {
return try {
withContext(Dispatchers.IO, block)
} catch (t: Throwable) {
handleError(t)
null
}
}
AP