DBSHARINGJobStatusTag

Objective-C

enum DBSHARINGJobStatusTag : NSInteger {}

Swift

@frozen enum DBSHARINGJobStatusTag : Int, @unchecked Sendable

The DBSHARINGJobStatusTag enum type represents the possible tag states with which the DBSHARINGJobStatus union can exist.

  • The asynchronous job is still in progress.

    Declaration

    Objective-C

    DBSHARINGJobStatusInProgress

    Swift

    case inProgress = 0
  • The asynchronous job has finished.

    Declaration

    Objective-C

    DBSHARINGJobStatusComplete

    Swift

    case complete = 1
  • The asynchronous job returned an error.

    Declaration

    Objective-C

    DBSHARINGJobStatusFailed

    Swift

    case failed = 2