FIRLoadBundleTaskProgress
@interface FIRLoadBundleTaskProgress : NSObject
Represents a progress update or a final state from loading bundles.
-
How many documents have been loaded.
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger documentsLoaded;
-
The total number of documents in the bundle. 0 if the bundle failed to parse.
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger totalDocuments;
-
How many bytes have been loaded.
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger bytesLoaded;
-
The total number of bytes in the bundle. 0 if the bundle failed to parse.
Declaration
Objective-C
@property (nonatomic, readonly) NSInteger totalBytes;
-
The current state of
LoadBundleTask
.Declaration
Objective-C
@property (nonatomic, readonly) FIRLoadBundleTaskState state;