resumeAllChannelMediaRelay method

  1. @override
Future<void> resumeAllChannelMediaRelay()

Resumes the media stream relay to all destination channels.

After calling the pauseAllChannelMediaRelay method, you can call this method to resume relaying media streams to all destination channels.

After a successful method call, the SDK triggers the RtcEngineEventHandler.channelMediaRelayEvent callback to report whether the media stream relay is successfully resumed.

Note: Call this method after the pauseAllChannelMediaRelay method.

Implementation

@override
Future<void> resumeAllChannelMediaRelay() {
  return _invokeMethod('resumeAllChannelMediaRelay');
}