NetworkType

public enum NetworkType : Int, Codable

Kind of connectivity required for the job to run

  • any

    Job will run regardless the connectivity of the platform

    Declaration

    Swift

    case any = 0
  • Requires at least cellular such as 2G, 3G, 4G, LTE or Wifi

    Declaration

    Swift

    case cellular = 1
  • Device has to be connected to Wifi or Lan

    Declaration

    Swift

    case wifi = 2