Improve code and display error.
This commit is contained in:
committed by
Benoit Marty
parent
4bd01b6f4f
commit
e64051f7bd
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user