FlightDataDownloadCompletionStatus

@objc(GSFlightDataDownloadCompletionStatus)
public enum FlightDataDownloadCompletionStatus : Int, CustomStringConvertible

Completion status of a flight data (PUD) download.

  • Download is not complete yet. Flight data (PUD) download may still be ongoing or not even started yet.

    Declaration

    Swift

    case none
  • Latest flight data download was successful.

    latestDownloadCount informs about the total count of downloaded flight data files.

    Declaration

    Swift

    case success
  • Latest flight data download was aborted before successful completion.

    latestDownloadCount informs about the total count of downloaded flight data files.

    Declaration

    Swift

    case interrupted
  • Debug description.

    Declaration

    Swift

    public var description: String { get }