commonMain.progressive.Progressive.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of state-jvm Show documentation
Show all versions of state-jvm Show documentation
Progress-aware failure states
The newest version!
package opensavvy.state.progressive
import opensavvy.progress.Progress
import opensavvy.progress.done
import opensavvy.progress.loading
import opensavvy.state.ExperimentalProgressiveRaiseApi
import opensavvy.state.outcome.Outcome
import opensavvy.state.progressive.ProgressiveOutcome.*
/**
* A [Outcome] with integrated [Progress] management.
*
* There are three possible cases:
* - [Incomplete] if the task has started but no value is currently available,
* - [Success] if a successful result is available (see [Success.value]),
* - [Failure] if a failed result is available (see [Failure.failure]).
*
* Note that in cases, a progressive outcome may be currently loading.
* - [Incomplete] must be loading,
* - [Success] may be loading if the task is currently querying a newer value than the one it stores,
* - [Failure] may be loading if the task is currently retrying the operation.
*
* To access the inner outcome and progression, you can use the destructuring operator:
* ```kotlin
* val (out, progression) = /* ProgressiveOutcome */
* ```
*
* To create progressive outcomes from computations, use the [successfulWithProgress] and [failedWithProgress] factories.
*/
sealed class ProgressiveOutcome {
/**
* The current progression of this outcome.
*
* For more information, see [ProgressiveOutcome].
*/
abstract val progress: Progress
/**
* Operations that are not successful; common supertype of [Incomplete] and [Failure].
*
* Note that a [Success] value with progress information is not included in this hierarchy, as it is successful.
*
* Due to backwards-compatibility considerations, this cannot be a subtype of [ProgressiveOutcome].
* If you have an instance of this interface and need a [ProgressiveOutcome], use [upcast].
*/
@ExperimentalProgressiveRaiseApi
sealed interface Unsuccessful
/**
* The operation is ongoing, but we do not know if it will be successful or a failure.
*/
@OptIn(ExperimentalProgressiveRaiseApi::class)
data class Incomplete(
override val progress: Progress.Loading = loading(),
) : ProgressiveOutcome(), Unsuccessful
/**
* The latest known result of the operation was a success, available as [value].
*
* If [progress] is loading, this means the operation has been retried in an attempt to access a more up-to-date
* version.
*/
data class Success(
val value: Value,
override val progress: Progress = done(),
) : ProgressiveOutcome()
/**
* The latest known result of the operation was a failure, available as [failure].
*
* If [progress] is loading, this means the operation has been retried in an attempt to access a more up-to-date
* version.
*/
@OptIn(ExperimentalProgressiveRaiseApi::class)
data class Failure(
val failure: Failure,
override val progress: Progress = done(),
) : ProgressiveOutcome(), Unsuccessful
}