DownloadState

sealed class DownloadState

下载状态

Inheritors

Types

Link copied to clipboard
data object Cancel : DownloadState

下载取消

Link copied to clipboard
data class Error(val cause: Throwable) : DownloadState

下载出错

Link copied to clipboard
data class Progress(val progress: Long, val total: Long) : DownloadState

下载进度

Link copied to clipboard
data class Start(val url: String) : DownloadState

开始下载

Link copied to clipboard
data class Success(val file: File) : DownloadState

下载成功