CleanerState

Types

Link copied to clipboard
data class Analyzed<T : TrashItem>(val items: List<T>, val error: Throwable? = null) : CleanerState

The state of the cleaner, which displays information about the analysis results.

Link copied to clipboard
data class Analyzing(val itemCount: Int = 0, val size: Long = 0) : CleanerState

The states of the cleaner in the process of analyzing the garbage on the device.

Link copied to clipboard
data class Cleaned<T : TrashItem>(val items: List<T>, val error: Throwable? = null) : CleanerState

The state of the cleaner, which displays information about the cleaning results.

Link copied to clipboard
data class Cleaning(val itemCount: Int = 0, val size: Long = 0) : CleanerState

The state of the cleaner in the process of cleaning debris on the device.

Link copied to clipboard

The initial state of the cleaner.