DBFILESUploadSessionTypeTag

Objective-C

enum DBFILESUploadSessionTypeTag : NSInteger {}

Swift

@frozen enum DBFILESUploadSessionTypeTag : Int, @unchecked Sendable

The DBFILESUploadSessionTypeTag enum type represents the possible tag states with which the DBFILESUploadSessionType union can exist.

  • Pieces of data are uploaded sequentially one after another. This is the default behavior.

    Declaration

    Objective-C

    DBFILESUploadSessionTypeSequential

    Swift

    case sequential = 0
  • Pieces of data can be uploaded in concurrent RPCs in any order.

    Declaration

    Objective-C

    DBFILESUploadSessionTypeConcurrent

    Swift

    case concurrent = 1
  • (no description).

    Declaration

    Objective-C

    DBFILESUploadSessionTypeOther

    Swift

    case other = 2