DecaySweepResult

sealed class DecaySweepResult

Result of a DecaySweeper run.

Inheritors

Types

Link copied to clipboard
data class Failed(val cause: Throwable) : DecaySweepResult

The sweep failed.

Link copied to clipboard
data class NoOp(val reason: String) : DecaySweepResult

The sweep had nothing to do.

Link copied to clipboard
data class Swept(val transitioned: List<Proposition>, val revived: List<Proposition>, val pruned: List<Proposition>, val skipped: Int) : DecaySweepResult

The sweep ran and (potentially) transitioned propositions.