Network Info
data class NetworkInfo(val userID: String = "", val quality: NetworkQuality = NetworkQuality.EXCELLENT, val upLoss: Int = 0, val downLoss: Int = 0, val delay: Int = 0)
网络信息
概览
网络状态信息的数据结构,包含用户ID、网络质量、丢包率和延迟等信息。
状态属性概览
| 属性 | 类型 | 描述 |
| userID | String | 用户唯一ID |
| quality | NetworkQuality | 网络质量 |
| upLoss | Int | 上行丢包率,取值范围 0, 100 |
| downLoss | Int | 下行丢包率,取值范围 0, 100 |
| delay | Int | 延迟(单位:毫秒) |
Constructors
Link copied to clipboard
constructor(userID: String = "", quality: NetworkQuality = NetworkQuality.EXCELLENT, upLoss: Int = 0, downLoss: Int = 0, delay: Int = 0)