DownloadPhase

open class DownloadPhase : DownloadGroup

Represents a numbered phase for offline download. Download phases are used to break downloads into phases which might have different characteristics.

See also

OfflineDataService.download.
  • Mode for this download phase (any, batch, parallel or sequence). Selecting mode any means that the effective mode is determined by other configuration settings (e.g. for batches or threads).

    Declaration

    Swift

    final public var mode: DownloadMode
  • Construct a new download phase with the specified number.

    Declaration

    Swift

    public init(number: Int)

    Parameters

    number

    Download phase number.

  • Number of this download phase.

    Declaration

    Swift

    open var number: Int { get }