Channels
Our channels enable developers to implement different types of chat messaging capabilities into their applications easily
Last updated
Our channels enable developers to implement different types of chat messaging capabilities into their applications easily
Last updated
In this section, we will cover the concept of channels in Amity Chat SDK and how to use them to enable different types of chat messaging capabilities in your application.
Please be aware that there is some incompatibility between SDK version 5 and version 6 regarding the Subchannel feature.
Applications using SDK version 5 cannot view messages sent to subchannels by SDK version 6.
Channels can be sorted by 'Last Activity', which means that if messages are sent to SDK version 5 in subchannels, it moves the channel to the top of the collection. However, while the order will be updated to the top, the SDK version 5 will not display the message.
The concept of "channel and subchannel" is central to understanding how communication is structured in a chat SDK. Channels are the primary containers that hold subchannels, while subchannels are subdivisions within a channel that represent individual topics or chat threads.
The relationship between a channel and its subchannels is hierarchical. A channel serves as a parent container for multiple subchannels, each of which represents a separate conversation or topic. Messages and interactions occur within subchannels, not the main channel itself. This organization allows for easier navigation and management of different conversations within a single channel.
The differences between channels and subchannels are as follows:
Function: Channels act as containers for subchannels, while subchannels are where actual conversations and interactions take place.
Hierarchy: Channels serve as parent containers, whereas subchannels are subdivisions within a channel.
Messages: Channels do not contain any messages directly; instead, all messages are stored within subchannels.
Management: Users can create, update, delete, and query subchannels within a channel, managing each subchannel individually.
Moderation: Moderation actions, such as banning, unbanning, muting, and unmuting users, can be performed at the channel level rather than the subchannel level. This approach ensures that moderation decisions apply to all subchannels within the main channel, providing consistent management across different conversations or topics.
By default, when a channel is created, a corresponding default subchannel is also automatically generated.
Amity's Chat SDK has several channel types with different use cases. Each type is designed to match a particular use-case for chat channels.
Channel Type | Discoverable by | Message sending privileges | Moderation access | Channel Creation | Realtime Events Retrieval |
Community | All users and admins | Joined members and admins | All Moderation tools | SDK, Console | Automatic |
Private Community | Joined members and admins | Joined members and admins | All Moderation tools | SDK, Console | Automatic |
Live | Joined members and admins | Joined members and admins | All Moderation tools | SDK, Console | Subscription needed |
Broadcast | All users and admins | Admins | Admin Moderation tools | Console | Subscription needed |
Conversation | Joined members | Joined members | No Moderation tools | SDK | Automatic |
For further information about channel realtime events process, please visit Chat Realtime Events.
The community channel is the default channel type and can be discovered by all users and admins. It acts as a public chat channel that showcases all of the features that our SDK's have to offer.
All users in the network can search for community channel
All users in the network can join the community without an invitation
Support @mention user
Support @mention all users in the channel
Appear on ASC Console for administrator to monitor
Team collaboration
Online gaming
Celebrity fan club
Live streaming
Any type of public chat
Live channels offer the ability for users and admins to create channels with exclusive membership. The live channel is identical to our Community channel in features with the caveat that users will not be able to discover the channel when querying for all channels unless they are already a member of it. However, users and admins can still invite other users to join the channel.
Can only be searched by member
Users can join if they know channel ID
Support @mention user
Support @mention channel users (mention all users)
Appear on the ASC console for administrator to monitor
Chat channel for a one-time Live event
Conversation channels is designed for 1-on-1 messaging and private small group chat. Unlike the other channel types, a Conversation channel can be created simply by knowing the userId of the user we want to converse with. Users can start conversations with any other user and only they will be able to see their conversation.
Each channel has its own list of members, and no two channels can have the exact same member list. If someone tries to create a new channel with the same set of members as an existing channel, the system will return the existing channel. For example creating a new channel with User A and User B will always result in the same channel no matter how many time the create command is called. This is useful when trying to establish a private chat channel between 2 or more users as we want to make sure the user can continue using the existing channel that contains previous messages history.
Channel is always unique with the same set of membership.
Support up to 10 members per conversation channel
Users can not join, leave, be added or removed from the channel once it's created
Users can not ban / unban other users in the channel
Does not appear on the ASC console for administrator to monitor
Does not support @mention user & @mention all
1:1 Chat Channel
Private Group Chat
Customer Support Chat
Channel types can be created through SDK i.e
Community
,Live
andConversation
. Creation ofPrivate
andStandard
type has been removed. Creation ofBroadcast
channel type is not supported through the SDK. But for query,getChannels:
method supports all channel types includingBroadcast
,Private
andStandard
.
The Broadcast channel is heavily adopted by corporate users who constantly promote or advertise their products, or make the announcement to drive awareness. Unlike other channel types, broadcast channels only allow admin users to send messages from Console, and everyone else in the channel will be under read-only mode.
Broadcast message can only be sent out via ASC console
The administrator can choose to send to any community OR live channel (but not to the conversation channel).
Support @mention user
Support @mention channel users (mention all users)
Typical use cases:
Marketing & Advertising
Organizational Announcements
Name | Data Type | Description |
|
| ID of the channel |
|
| ID of the default subchannel that's generated upon channel creation |
|
| Is channel distinct? |
|
| Additional properties to support custom fields |
|
| Type of channel |
|
| Tags used for searching |
|
| Is this channel muted? |
|
| This channel has limited sending rate? |
|
| Number of messages within rate limit |
|
| Channel name for displaying |
|
| Number of members in channel |
|
| Number of messages in channel |
|
| Number of unread messages in channel |
|
| Date/time of user's last activity related to the channel (e.g. add/remove member) |
|
| Date/time the channel was created |
|
| Date/time the channel was last updated |
|
| Avatar file ID |
|
| Public / Private community channel |
Channel Object is a Live Object and you can observe real-time changes in Channel Properties. Please see to Live Object on how to listen to real-time changes.