You can check if a user in the Sendbird application is currently connected to the Sendbird server. You can also check, in group channels only, whether each channel member is currently connected to the server.
In a group channel, you can check the current connection status of each member. To do so, you need to first call the refresh()
method to update the channel with the latest information, then call members
to retrieve a list of channel members.
When the members
property returns a list of all members, you can call user.connectionStatus
for each User
object in the list to check the corresponding member's current online status. Acceptable values of the connectionStatus
property are offline
and online
.
Value | Description |
---|---|
offline | The user isn't connected to the Sendbird server. |
online | The user is connected to the Sendbird server. |