OfflineODataSendStoreProgress

@available(swift, deprecated: 5.1, message: "New functions for obtaining progress information for open, download, upload, and sendStore are available using OfflineODataProviderDelegate.")
public struct OfflineODataSendStoreProgress

Contains information about files being sent during a send store operation.

  • The number of bytes that have been sent to the server for the current file.

    Declaration

    Swift

    public private(set) var currentFileBytesSent: Int { get }
  • The size of the the current file being sent in bytes.

    Declaration

    Swift

    public private(set) var currentFileSize: Int { get }
  • The index of the current file being sent (starting from 1).

    Declaration

    Swift

    public private(set) var currentFileIndex: Int { get }
  • The name of the current file being sent.

    Declaration

    Swift

    public private(set) var currentFileName: String { get }
  • The total number of files to send.

    Declaration

    Swift

    public private(set) var totalNumberOfFiles: Int { get }
  • The total size of all files to send in bytes.

    Declaration

    Swift

    public private(set) var totalSize: Int { get }
  • The total bytes that have been sent to server.

    Declaration

    Swift

    public private(set) var totalBytesSent: Int { get }