Add or remove a channel delegate
To receive and retrieve information about events happening in channels from the Sendbird server, you can add a channel delegate with its UNIQUE_DELEGATE_ID
by calling the add(_:identifier:)
method. You should declare the UNIQUE_DELEGATE_ID
when registering multiple concurrent delegates.
There are three types of channel delegates: BaseChannelDelegate
, OpenChannelDelegate
, and GroupChannelDelegate
. The following tables show a list of events for each channel delegate.
If you want to stay informed of changes related to channels and notify the changes to different client apps, define and register multiple channel delegates to each view controller.
Channel event types
List of BaseChannelDelegate events
Method | Invoked when | Notified devices |
---|---|---|
channel(_:didReceive:) | A message has been received in a channel. | All devices where client apps with the channel are in the foreground, except the device that sent the message. |
channel(_:didUpdate:) | A message has been updated in a channel. | All devices where client apps with the channel are in the foreground, except the device where the message was updated. |
channel(_:didReceiveMention:) | A user has been mentioned in a message sent to a channel. | All devices of up to ten users mentioned in the channel, except the device that was used to mention other users. |
channel(_:userWasMuted:) | A user in a channel has been muted. | All devices where client apps with the channel are in the foreground, including the device where the user was muted. |
channel(_:userWasUnmuted:) | A user in a channel has been unmuted. | All devices where client apps with the channel are in the foreground, including the device where the user was unmuted. |
channel(_:userWasBanned:) | A user has been banned from a channel. | All devices where client apps with the channel are in the foreground, including the device where the user was banned. |
channel(_:userWasUnbanned:) | A user has been unbanned from a channel. | All devices where client apps with the channel are in the foreground, including the device where the user was unbanned. |
channelWasFrozen(_:) | A channel has been frozen. | All devices where client apps with the channel are in the foreground, including the device where the channel was frozen. |
channelWasUnfrozen(_:) | A channel has been unfrozen. | All devices where client apps with the channel are in the foreground, including the device where the channel was unfrozen. |
channelWasChanged(_:) | For open channels, at least one of the following has been changed: name, cover image, data, custom type, operators, or other properties. | All devices that are connected to the changed channel, including the device where the channel was changed. |
channelWasDeleted(_:channelType:) | A channel has been deleted. | All devices where client apps with the channel are in the foreground, including the device where the channel was deleted. |
channel(_:messageWasDeleted:) | A message has been deleted in a channel. | All devices where client apps with the channel are in the foreground, including the device where the message was deleted. |
channel(_:createdMetaData:) | Metadata has been created for a channel. | All devices where client apps with the channel are in the foreground, including the device where the metadata was created. |
channel(_:updatedMetaData:) | Metadata of a channel has been updated. | All devices where client apps with the channel are in the foreground, including the device where the metadata was updated. |
channel(_:deletedMetaDataKeys:) | Metadata of a channel has been deleted. | All devices where client apps with the channel are in the foreground, including the device where the metadata was deleted. |
channel(_:createdMetaCounters:) | A metacounter has been created for a channel. | All devices where client apps with the channel are in the foreground, including the device where the metacounter was created. |
channel(_:updatedMetaCounters:) | A metacounter of a channel has been updated. | All devices where client apps with the channel are in the foreground, including the device where the metacounter was updated. |
channel(_:deletedMetaCountersKeys:) | A metacounter of a channel has been deleted. | All devices where client apps with the channel are in the foreground, including the device where the metacounter was deleted. |
channelDidUpdateOperators(_:) | A user has been registered or removed as operators of a channel. | All devices where client apps with the channel are in the foreground, including the device of the user who was registered or removed as operators of the channel. |
channel(_:didUpdateThreadInfo:) | A reply message has been created or deleted from a thread. | All devices where client apps with the channel are in the foreground, including devices of all users who are in the message thread, and except the device of the user who created or deleted the reply message. |
channel(_:updatedReaction:) | A message reaction has been updated in a group channel. | All devices where client apps with the channel are in the foreground, including the device that reacted to the message. |
List of OpenChannelDelegate events
Method | Invoked when | Notified devices |
---|---|---|
channel(_:userDidEnter:) | A user has entered an open channel. | All devices where client apps with the channel are in the foreground, including the device that the user entered that channel. |
channel(_:userDidExit:) | A participant has exited an open channel. | All devices where client apps with the channel are in the foreground, except the device that the user exited that channel. |
channelDidChangeParticipantCount(_:) | The participant count of one or more open channels has changed. | All connected devices where client apps have the affected open channels in their channel list. |
List of GroupChannelDelegate events
Method | Invoked when | Notified devices |
---|---|---|
channelWasHidden(_:) | A group channel has been hidden from the list. | All devices of a user who hid the channel. |
channel(_:didReceiveInvitation:inviter:) | A user has been invited to a group channel. | All devices where client apps with the channel are in the foreground, including the device of a user who received an invitation. |
channel(_:didDeclineInvitation:inviter:) | A user has declined an invitation to a group channel. | All devices where client apps with the channel are in the foreground, including the device of a user who declined an invitation. |
channel(_:userDidJoin:) | A user has joined a group channel. | All devices where client apps with the channel are in the foreground, including all devices of the user who joined the channel, and except the devices of users who haven't accepted invitations. |
channel(_:userDidLeave:) | A user has left a group channel. | All devices where client apps with the channel are in the foreground, including all devices of the user who left the channel, and except the devices of users who haven't accepted invitations. |
channelDidUpdateDeliveryStatus(_:) | A message has been delivered in a group channel. | All devices where client apps with the channel are in the foreground, and except the device where the message was marked as delivered and has invoked this event. |
channelDidUpdateReadStatus(_:) | A user has read a specific unread message in a group channel. | All devices where client apps with the channel are in the foreground, including the device of users who have been invited to the channel, except the device of the user who has read all the messages. |
channelDidUpdateTypingStatus(_:) | A user starts typing a message to a group channel. | All devices where client apps with the channel are in the foreground, except the devices of the users who are invited to the channel, and except all devices of the user who typed a message. |
channelDidChangeMemberCount(_:) | One or more group channels' member count has changed. | All connected devices where client apps have the affected group channels in their channel list. |
channelDidUpdatePinnedMessages(_:) | A message has been pinned or unpinned. | All connected devices where client apps have the affected group channels in their channel list. |
Add a channel event delegate
The following code shows how to add a channel delegate.
The following code samples show a full set of supported event callbacks with their parameters and how to add an open channel delegate and a group channel delegate to the unique SendbirdChat
instance.
Open channel delegate
Group channel delegate
Remove a channel event delegate
The following code shows how to remove the channel delegate.