Room Updates

Peer Count

The HMSRoom object has a property called peerCount.

This property will be updated in the background and can be read when the HMSUpdateListener's onRoomUpdate is called specifically the type HMSRoomUpdate.ROOM_PEER_COUNT_UPDATED

The android SDK will update these values whenever a peer joins or leaves.

To receive these values even if no peer joins the room, look into the webhooks for the peer join events.

hmsSDK.join(config, object : HMSUpdateListener { override fun onRoomUpdate(type: HMSRoomUpdate, hmsRoom: HMSRoom) { when (type) { HMSRoomUpdate.ROOM_PEER_COUNT_UPDATED -> { val count = hmsRoom.peerCount } } } }

Have a suggestion? Recommend changes ->

Was this helpful?

1234