DownloadFinished

data class DownloadFinished(downloadType: HttpRequestType, url: String, lastRedirectLocation: String?, downloadTime: Double, httpStatus: Int, size: Long, isSuccess: Boolean) : SourceEvent

Emitted when a download was finished.

Constructors

Link copied to clipboard
fun DownloadFinished(downloadType: HttpRequestType, url: String, lastRedirectLocation: String?, downloadTime: Double, httpStatus: Int, size: Long, isSuccess: Boolean)

Properties

Link copied to clipboard
val downloadTime: Double

The time needed to finish the request, in seconds.

Link copied to clipboard
val downloadType: HttpRequestType

Which type of request this was.

Link copied to clipboard
val httpStatus: Int

The HTTP status code of the request. If opening the connection failed, a value of 0 is returned.

Link copied to clipboard
val isSuccess: Boolean

If the download was successful.

Link copied to clipboard
val lastRedirectLocation: String?

The last redirect location, or null if no redirect happened.

Link copied to clipboard
val size: Long

The size of the downloaded data, in bytes.

Link copied to clipboard
val url: String

The URL of the request.