@rongcloud/plugin-rtc 5.3.10 → 5.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
- * RCRTC - v5.3.10
3
- * CommitId - acee2199ac27011823ddcc683a51217eb57d0d21
4
- * Mon May 09 2022 12:20:03 GMT+0800 (China Standard Time)
2
+ * RCRTC - v5.3.11
3
+ * CommitId - 5127d0f58690a5ae5922c76ee706f408befd647f
4
+ * Fri May 27 2022 11:32:30 GMT+0800 (China Standard Time)
5
5
  * ©2020 RongCloud, Inc. All rights reserved.
6
6
  */
7
7
  import { EventEmitter, LogLevel, RTCMode, IRuntime, RTCPluginContext, IServerRTCRoomEntry, IReceivedMessage, ErrorCode, IJoinRTCRoomData, KVString, RTCJoinType, IRTCUserData, IRTCJoinedInfo, IPluginGenerator } from '@rongcloud/engine';
@@ -2530,6 +2530,11 @@ declare abstract class RCAbstractRoom {
2530
2530
  * 退出并销毁当前房间实例,退出后该房间的所有方法将不可用
2531
2531
  */
2532
2532
  __destroy(quitRoom: boolean): Promise<void>;
2533
+ /**
2534
+ * 退出房间之前禁用所有远端资源,避免退出动作耗时过长,
2535
+ * 导致在未完全退出的过程中仍能听到房间内的声音问题
2536
+ */
2537
+ private _muteRemoteTracksBeforeQuit;
2533
2538
  private _leaveHandle;
2534
2539
  private _onLocalTrackDestroied;
2535
2540
  /**