Improve code and display error.

This commit is contained in:
Benoit Marty
2024-05-07 09:47:46 +02:00
committed by Benoit Marty
parent 4bd01b6f4f
commit e64051f7bd
6 changed files with 94 additions and 38 deletions

View File

@@ -86,6 +86,8 @@ sealed interface AsyncAction<out T> {
fun isFailure(): Boolean = this is Failure
fun isSuccess(): Boolean = this is Success
fun isReady() = isSuccess() || isFailure()
}
suspend inline fun <T> MutableState<AsyncAction<T>>.runCatchingUpdatingState(