PeersOnlineStatusMap

最近更新时间:2022-09-20 05:17:40

用户在线状态集合。

示例

import ArRTM from "ar-rtm-sdk";

client.on("PeersOnlineStatusChanged", peerOnlineState => {
  Object.keys(peerOnlineState).forEach(peerId => {
    const onlineState = peerOnlineState[peerId];
    console.log(`peer ${peerId} online state is ${onlineState}`);
  })
});

包括以下内容:

属性类型描述
[peerId: string]RtmStatusCode.PeerOnlineState当前用户所对应的状态。