setRemoteHighPriorityAudioStream abstract method

Future<int> setRemoteHighPriorityAudioStream(
  1. bool enabled,
  2. int uid,
  3. {int streamType}
)

设置远端用户音频流的高优先级。 支持在音频自动订阅的情况下,设置某一个远端用户的音频为最高优先级,可以优先听到该用户的音频

说明

  • 该接口需要通话中设置,并需要打开自动订阅(默认打开)。

  • 该接口只能设置一个用户的优先级,后设置的会覆盖之前的设置。

  • 该接口通话结束后,优先级设置重置。

参数说明

enabled是否设置音频订阅优先级。rue:设置音频订阅优先级。false:取消设置音频订阅优先级。

uid 用户 ID

streamType 订阅音频流的类型。默认为 NERtcAudioStreamType.kNERtcAudioStreamTypeMain

Implementation

Future<int> setRemoteHighPriorityAudioStream(bool enabled, int uid,
    {int streamType});