Progress

data class Progress<T>(val bytesSent: Int, val totalBytesSent: Int, val totalBytesToSend: Int) : ProgressMessageResult<T>

Contained values for progressing information while file is being uploaded.

Constructors

Link copied to clipboard
constructor(bytesSent: Int, totalBytesSent: Int, totalBytesToSend: Int)

Properties

Link copied to clipboard

Bytes sent since the last time this callback was called.

Link copied to clipboard

Total number of bytes sent so far.

Link copied to clipboard

Total bytes to send.