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 a65c290dd3
commit 7f9a30a033
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(