2025-10-09 16:48:46 +08:00

42 lines
790 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMChatroomCdnTrackInfo.h
// NIMSDK
//
// Created by 陈吉力 on 2023/12/11.
// Copyright © 2023 Netease. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
@interface V2NIMChatroomCdnTrackInfo : NSObject
/**
* 基础信息
* s: 成功次数
* f: 失败次数
* sr: 成功平均响应时间(s)
* fr失败平均响应时间(s)
* smr成功最大响应时间(s)
* fmr失败最大响应时间(s)
* 例: {
"cdn.netease.com": {
"s": 10,
"f": 5,
"sr": 0.3,
"fr": 0.2,
"smr": 0.5,
"fmr": 0.3
}
* }
*/
@property (nonatomic, copy) NSDictionary *baseInfo;
/**
* 总共失败次数
*/
@property (nonatomic, assign) NSInteger finalFailureCount;
@end
NS_ASSUME_NONNULL_END