stopPerformanceMonitor method

Future<void> stopPerformanceMonitor()

停止系统性能监控。

支持版本:1.19.0 及以上。 详情描述:停止系统性能监控。停止系统性能监控后,将停止触发 onPerformanceStatusUpdate 回调。 业务场景:通过监控系统性能,协助用户快速定位、解决性能问题,提升用户体验。 调用时机:需要在 createEngine 之后调用。 使用限制:无。 相关接口:可通过 startPerformanceMonitor 启动系统性能监控。

Implementation

Future<void> stopPerformanceMonitor() async {
  return await ZegoExpressImpl.instance.stopPerformanceMonitor();
}