UploadProgressionState
public enum UploadProgressionState
The state of the data uploading in the background
-
No uploading
Declaration
Swift
case idle
-
Uploading in progress, the progression value is between 0 and 1
Declaration
Swift
case onGoing(progression: Double)
-
Upload finished with success
Declaration
Swift
case success
-
Upload failed, with error
Declaration
Swift
case error(error: Error)