stopAllRemoteView method

  1. @override
void stopAllRemoteView()
override

Stop subscribing to all remote users' video streams and release all rendering resources

Calling this API will cause the SDK to stop receiving all remote video streams and release all decoding and rendering resources.

Note

If a substream image (screen sharing) is being displayed, it will also be stopped.

Implementation

@override
void stopAllRemoteView() {
  TRTCLog(_tag, "stopAllRemoteView");
  TRTCCloudNative.instance.stopAllRemoteView();
}