ARTStatsConnectionTypes
Objective-C
@interface ARTStatsConnectionTypes : NSObject
Swift
class ARTStatsConnectionTypes : NSObject
Contains a breakdown of summary stats data for different (TLS
vs non-TLS
) connection types.
-
A
ARTStatsResourceCount
object containing a breakdown of usage by scope overTLS
connections (bothTLS
and non-TLS
).Declaration
Objective-C
@property (nonatomic, readonly) ARTStatsResourceCount *_Nonnull all;
Swift
var all: ARTStatsResourceCount { get }
-
A
ARTStatsResourceCount
object containing a breakdown of usage by scope over non-TLS
connections.Declaration
Objective-C
@property (nonatomic, readonly) ARTStatsResourceCount *_Nonnull plain;
Swift
var plain: ARTStatsResourceCount { get }
-
A
ARTStatsResourceCount
object containing a breakdown of usage by scope overTLS
connections.Declaration
Objective-C
@property (nonatomic, readonly) ARTStatsResourceCount *_Nonnull tls;
Swift
var tls: ARTStatsResourceCount { get }