LoadBundleTaskProgress
class LoadBundleTaskProgress : NSObject, @unchecked Sendable
Represents a progress update or a final state from loading bundles.
-
How many documents have been loaded.
Declaration
Swift
var documentsLoaded: Int { get }
-
The total number of documents in the bundle. 0 if the bundle failed to parse.
Declaration
Swift
var totalDocuments: Int { get }
-
How many bytes have been loaded.
Declaration
Swift
var bytesLoaded: Int { get }
-
The total number of bytes in the bundle. 0 if the bundle failed to parse.
Declaration
Swift
var totalBytes: Int { get }
-
The current state of
LoadBundleTask
.Declaration
Swift
var state: LoadBundleTaskState { get }