JobStatus

public enum JobStatus : CustomStringConvertible, JSONRepresentable

The JobStatus union

  • The asynchronous job is still in progress.

    Declaration

    Swift

    case inProgress
  • The asynchronous job has finished.

    Declaration

    Swift

    case complete
  • The asynchronous job returned an error.

    Declaration

    Swift

    case failed(Sharing.JobError)
  • Declaration

    Swift

    public var description: String { get }