ARTStatsResourceCount
Objective-C
@interface ARTStatsResourceCount : NSObject
Swift
class ARTStatsResourceCount : NSObject
Contains the aggregate data for usage of a resource in a specific scope.
-
The total number of resources opened of this type.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger opened;
Swift
var opened: UInt { get }
-
The peak number of resources of this type used for this period.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger peak;
Swift
var peak: UInt { get }
-
The average number of resources of this type used for this period.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger mean;
Swift
var mean: UInt { get }
-
The minimum total resources of this type used for this period.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger min;
Swift
var min: UInt { get }
-
The number of resource requests refused within this period.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger refused;
Swift
var refused: UInt { get }