UpdaterDownloadState

@objc(GSUpdaterDownloadState)
public enum UpdaterDownloadState : Int, CustomStringConvertible

Update file download state.

  • Update files are currently being downloaded.

    Declaration

    Swift

    case downloading
  • All requested update files have successfully been downloaded.

    Declaration

    Swift

    case success
  • Some requested update files failed to be downloaded.

    Note

    after this state is notified, another change will be notified and currentDownload will return nil.

    Declaration

    Swift

    case failed
  • Download operation was canceled by application request.

    Note

    after this state is notified, another change will be notified and currentDownload will return nil.

    Declaration

    Swift

    case canceled
  • Debug description.

    Declaration

    Swift

    public var description: String { get }