OTVDownloadError
Objective-C
enum OTVDownloadError : NSInteger {}
Swift
enum OTVDownloadError : Int
ObjectiveC compatible enumeration of the possible errors of a persistence asset.
-
No error
Declaration
Objective-C
OTVDownloadErrorNoError = 0Swift
case noError = 0 -
An unknown or unexpected error occured.
Declaration
Objective-C
OTVDownloadErrorUnknownError = 1Swift
case unknownError = 1 -
An error happens in download task
Declaration
Objective-C
OTVDownloadErrorDownloadTaskError = 2Swift
case downloadTaskError = 2 -
An error happends when requesting the license
Declaration
Objective-C
OTVDownloadErrorLicenseRequestError = 3Swift
case licenseRequestError = 3 -
An error happends when downloading the manifest
Declaration
Objective-C
OTVDownloadErrorManifestDownloadError = 4Swift
case manifestDownloadError = 4 -
An error happends when parsing the manifest
Declaration
Objective-C
OTVDownloadErrorManifestParseError = 5Swift
case manifestParseError = 5 -
An error indicates downloading a LIVE content is not supported
Declaration
Objective-C
OTVDownloadErrorUnsupportedLiveError = 6Swift
case unsupportedLiveError = 6 -
An error indicates there is not enough space on device
Declaration
Objective-C
OTVDownloadErrorInsufficientSpaceError = 7Swift
case insufficientSpaceError = 7
OTVDownloadError Enumeration Reference