查询房间成员信息
更新时间: 2022/10/31 07:24:29
本文介绍如何通过 NERoom SDK 查询房间成员信息。房间成员信息包括自己在房间内的状态、房间内的成员列表以及成员的状态信息。
注意事项
该接口需要在进入房间后使用。
配置步骤
- 调用
joinRoom
接口加入房间。 - 根据 roomUuid 获取 NERoomContext。
- 调用
localMember
接口查询自己在房间内的状态。 - 调用
remoteMembers
接口查询房间内的成员列表以及成员的状态信息。
- 调用
示例代码
查询自己的状态
NERoomService roomService = NERoomKit.getInstance().getService(NERoomService.class);
NERoomContext roomContext = roomService.getRoomContext(roomUuid);
if (roomContext!=null){
NERoomMember localMember = roomContext.getLocalMember();
}
查询房间内其他成员的列表和状态信息
NERoomService roomService = NERoomKit.getInstance().getService(NERoomService.class);
NERoomContext roomContext = roomService.getRoomContext(roomUuid);
if (roomContext!=null){
List<NERoomMember> remoteMembers = roomContext.getRemoteMembers();
}
API 参考
方法 | 功能描述 |
---|---|
localMember | 查询自己的状态。 |
remoteMembers | 查询房间内其他成员的列表和状态信息。 |
此文档是否对你有帮助?