Base event emitted each time an upload task has to emit

interface UploadTaskEvent {
    bytesTransferred: number;
    completionRate: number;
    remainingBytes: number;
    state: StorageTaskState;
    totalBytes: number;
}

Hierarchy (View Summary)

Implemented by

Properties

bytesTransferred: number

Bytes already transferred

completionRate: number

Transfer completion rate

remainingBytes: number

Amount of bytes until the end of the transfer

State of the upload task

totalBytes: number

Total bytes to transfer