Group channel collection
A GroupChannelCollection
allows you to swiftly create a channel list view that doesn’t miss any channel-related events. This page explains how to draw a view using the collection.
Note: Understand the differences between local caching and SyncManager, and learn how to migrate Group channel collection.
Create a collection
You can create a groupChannelCollection
instance through the createGroupChannelCollection()
method. When creating the instance, you can also determine how to filter and order the group channel list.
Once the collection is created, you should call the loadMore()
).
Pagination
A groupChannelCollection
retrieves more channels to display in the channel list view through the loadMore()
method.
Whenever a scroll reaches the bottom of the channel list view, the hasMore()
will first check if there are more channels to load. If true, the loadMore()
will fetch them.
The hasMore()
should also be called after you've created a groupChannelCollection
.
Channel events
Use the groupChannelCollectionHandler
to determine how the client app would react to channel-related events.
This is called whenever a new channel is created as a real-time event or changelog sync is prompted when the client app is back online.
The following table shows possible cases where each event handler can be called.
Event | Called when |
---|---|
| - A new group channel is created as a real-time event. |
| - The channel information that is included in the user's current chat view is updated as a real-time event. |
| - A group channel is deleted as a real-time event. |
Dispose of the collection
The dispose()
should be called when you need to clear the current channel list view.