setUserVisibility abstract method

Future<int?> setUserVisibility(
  1. bool enable
)

设置用户可见性。未调用该接口前,本地用户默认对他人可见。

通过 enable 设置用户可见性和用户在房间内的行为:

  • true:可以被房间中的其他用户感知,且可以在房间内发布和订阅音视频流;
  • false:无法被房间中的其他用户感知,且只能在房间内订阅音视频流。

返回值:

  • 0:调用成功;
  • <0:调用失败,具体原因参看 ReturnStatus

注意:

Implementation

Future<int?> setUserVisibility(bool enable);