ContentUpdateStatus
Objective-C
enum ContentUpdateStatus : NSInteger {}
Swift
enum ContentUpdateStatus : Int, @unchecked Sendable
Constants indicating the content store object status.
-
Not started.
Declaration
Objective-C
ContentUpdateStatusIdle
Swift
case idle = 0
-
Wait for internet connection.
Declaration
Objective-C
ContentUpdateStatusWaitConnection
Swift
case waitConnection = 1
-
Wait for WIFI internet connection.
Declaration
Objective-C
ContentUpdateStatusWaitWIFIConnection
Swift
case waitWIFIConnection = 2
-
Check for updated items.
Declaration
Objective-C
ContentUpdateStatusCheckForUpdate
Swift
case checkForUpdate = 3
-
Download updated content.
Declaration
Objective-C
ContentUpdateStatusDownload
Swift
case download = 4
-
@details When entering this state ‘getUpdateItems’ will return the list of items target to update. Update is fully downloaded & ready to apply.
Declaration
Objective-C
ContentUpdateStatusFullyReady
Swift
case fullyReady = 5
-
Update is partially downloaded & ready to apply.
Declaration
Objective-C
ContentUpdateStatusPartiallyReady
Swift
case partiallyReady = 6
-
Download remaining content after appliance.
Declaration
Objective-C
ContentUpdateStatusDownloadRemainingContent
Swift
case downloadRemainingContent = 7
-
Download pending content.
Declaration
Objective-C
ContentUpdateStatusDownloadPendingContent
Swift
case downloadPendingContent = 8
-
Finished with success.
Declaration
Objective-C
ContentUpdateStatusComplete
Swift
case complete = 9
-
Finished with error.
Declaration
Objective-C
ContentUpdateStatusError
Swift
case error = 10