BatteryGaugeUpdaterState

@objc(GSBatteryGaugeUpdaterState)
public enum BatteryGaugeUpdaterState : Int, CustomStringConvertible

Battery gauge updater state.

  • Service is ready to prepare Update.

    Declaration

    Swift

    case readyToPrepare
  • Service preparation is in Progress.

    Declaration

    Swift

    case preparingUpdate
  • Service is ready to Update.

    Declaration

    Swift

    case readyToUpdate
  • Service update is in Progress.

    Declaration

    Swift

    case updating
  • An error occurred during the preparation or the update.

    This state is temporary, it will quickly change to .readyToPrepare afterwards.

    Declaration

    Swift

    case error
  • Debug description.

    Declaration

    Swift

    public var description: String { get }