UploadSessionType

public enum UploadSessionType : CustomStringConvertible, JSONRepresentable

The UploadSessionType union

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

    Declaration

    Swift

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

    Declaration

    Swift

    case concurrent
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }