Variable DownloadStatusConst

DownloadStatus: {
    FAILED: 16;
    PAUSED: 4;
    PENDING: 1;
    RUNNING: 2;
    SUCCESSFUL: 8;
} = ...

The status of the managed download.

Type declaration

  • ReadonlyFAILED: 16

    The download has failed (and will not be retried).

  • ReadonlyPAUSED: 4

    The download is waiting to retry or resume.

  • ReadonlyPENDING: 1

    The download is waiting to start.

  • ReadonlyRUNNING: 2

    The download is currently running.

  • ReadonlySUCCESSFUL: 8

    The download has successfully completed.