trtc-electron-sdk
Advanced tools
Comparing version 11.7.603-alpha.0 to 11.7.603-alpha.1
@@ -754,5 +754,6 @@ /** | ||
* @param {Number} systemCpu - 当前系统的 CPU 使用率(%) | ||
* @param {Number} rtt - 延迟(毫秒),代表 SDK 跟服务器一来一回之间所消耗的时间,这个值越小越好。 | ||
* 一般低于50ms的 rtt 是比较理想的情况,而高于100ms的 rtt 会引入较大的通话延时。 | ||
* 由于数据上下行共享一条网络连接,所以 local 和 remote 的 rtt 相同。 | ||
* @param {Number} rtt - 从 SDK 到云端的往返延时,单位 ms。 | ||
* 该数值代表从 SDK 发送一个网络包到云端,再从云端回送一个网络包到 SDK 的总计耗时,也就是一个网络包经历 “SDK=>云端=>SDK” 的总耗时。 | ||
* 该数值越小越好:如果 rtt < 50ms,意味着较低的音视频通话延迟;如果 rtt > 200ms,则意味着较高的音视频通话延迟。 | ||
* 需要特别解释的是,rtt 代表 “SDK=>云端=>SDK” 的总耗时,所以不需要区分 upRtt 和 downRtt。 | ||
* @param {Number} receivedBytes - 总接收字节数(包含信令和音视频) | ||
@@ -764,2 +765,8 @@ * @param {Number} sentBytes - 总发送字节总数(包含信令和音视频) | ||
* @param {Number} remoteStatisticsArraySize - 数组 remoteStatisticsArray 的大小 | ||
* @param {Number} gatewayRtt - 从 SDK 到本地路由器的往返时延,单位 ms。 | ||
* 该数值代表从 SDK 发送一个网络包到本地路由器网关,再从网关回送一个网络包到 SDK 的总计耗时,也就是一个网络包经历 “SDK>网关>SDK” 的总耗时。 | ||
* 该数值越小越好:如果 gatewayRtt < 50ms,意味着较低的音视频通话延迟;如果 gatewayRtt > 200ms,则意味着较高的音视频通话延迟。 | ||
* @param {Number} systemMemoryInMB - 当前系统的内存,单位 (MB) | ||
* @param {Number} systemMemoryUsageInMB - 当前系统内存占用,单位 (MB) | ||
* @param {Number} appMemoryUsageInMB - 当前应用的内存占用,单位 (MB) | ||
* | ||
@@ -779,3 +786,7 @@ */ | ||
remoteStatisticsArraySize: number; | ||
constructor(upLoss?: number, downLoss?: number, appCpu?: number, systemCpu?: number, rtt?: number, receivedBytes?: number, sentBytes?: number, localStatisticsArray?: TRTCLocalStatistics[], localStatisticsArraySize?: number, remoteStatisticsArray?: TRTCRemoteStatistics[], remoteStatisticsArraySize?: number); | ||
gatewayRtt: number; | ||
appMemoryUsageInMB: number; | ||
systemMemoryUsageInMB: number; | ||
systemMemoryInMB: number; | ||
constructor(upLoss?: number, downLoss?: number, appCpu?: number, systemCpu?: number, rtt?: number, receivedBytes?: number, sentBytes?: number, localStatisticsArray?: TRTCLocalStatistics[], localStatisticsArraySize?: number, remoteStatisticsArray?: TRTCRemoteStatistics[], remoteStatisticsArraySize?: number, gatewayRtt?: number, appMemoryUsageInMB?: number, systemMemoryUsageInMB?: number, systemMemoryInMB?: number); | ||
} | ||
@@ -782,0 +793,0 @@ /** |
{ | ||
"name": "trtc-electron-sdk", | ||
"version": "11.7.603-alpha.0", | ||
"version": "11.7.603-alpha.1", | ||
"description": "trtc electron sdk", | ||
@@ -5,0 +5,0 @@ "main": "./liteav/trtc.js", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
792998
15730