Message collection
A MessageCollection
instance allows you to swiftly create a chat view that includes all data. This page explains how to make a view using the collection.
Create a collection
First, create a MessageCollection
instance through the createMessageCollection()
method. Here, you need to set a MessageListParams
instance to determine the message order and the starting point of the message list in the chat view.
Starting point
The reference point for message retrieval in a chat view is startingPoint
. This should be specified as a timestamp.
If you set the value of startingPoint
to Long.MAX_VALUE
, messages in the view are retrieved in reverse chronological order, showing messages from the most to least recent.
If you set the value of startingPoint
to the message last read by the current user, messages in the view are fetched in chronological order, starting from the last message seen by the user to the latest.
Initialization
After creating a MessageCollection
instance, initialize the instance through the initialize()
method. Here, you need to set MessageCollectionInitPolicy
.
Policy
The MessageCollectionInitPolicy
property determines how initialization deals with the message data retrieved from the local cache and API calls. Because we only support MessageCollectionInitPolicy.CACHE_AND_REPLACE_BY_API
at this time, messages in the local cache must be cleared prior to adding the messages from the Sendbird server.
Policy | Description |
---|---|
| Retrieves cached messages from the local cache and then replaces them with the messages pulled from the Sendbird server through API calls. |
Pagination
Use the loadPrevious()
and loadNext()
methods to retrieve messages from the previous page and the next page.
When the loadPrevious()
method is called, the Chat SDK first checks whether there're more messages to load from the previous page through hasPrevious
. The same goes for hasNext
and loadNext()
.
These methods have to be called during initialization as well.
Message events
Use messageCollectionHandler
to determine how the client app reacts to message-related events.
The following table shows possible cases where each event handler can be called.
Handler | Called when |
---|---|
onMessagesAdded() | - A new message is created as a real-time event. |
onMessagesDeleted() | - A message is deleted as a real-time event. |
onMessagesUpdated() | - A message is updated as a real-time event. |
onChannelUpdated() | - The channel information that is included in the user's current chat view is updated as a real-time event. |
onChannelDeleted() | - The current channel is deleted as a real-time event. |
onHugeGapDetected() | - A huge gap is detected through background sync. In this case, you need to dispose of the view and create a new |
Loaded messages
The MessageCollection
holds list of messages that are loaded by initialize()
, loadMore()
, loadPrevious()
or by message events, the succeededMessages
. It is recommended to use this list as the datasource of your RecyclerView as this list is the most updated list.
Also, it has pendingMessages
and failedMessages
which are list of messages that are being sent and messages that have been failed to be sent respectively.
Gap
In local caching, a gap refers to a chunk of objects that are created and logged on the Sendbird server but missing from the local cache. Depending on the connection status, the client app could miss message events and new messages stored in the Sendbird server may not reach the Chat SDK in the client app. In such cases, a gap is created.
Small gaps can be filled in through changelog sync. However, if the client app has been disconnected for a while, too big of a gap can be created.
Huge gap
A gap can be created for many reasons, such as when a user has been offline for days. When the client app comes back online, the Chat SDK checks with the Sendbird server to see if there are any new messages. If it detects that more than 300 messages are missing in the local cache compared to the Sendbird server, the SDK determines that there is a huge gap and onHugeGapDetected()
is called.
Note: To adjust the number of missing messages that result in a call for
onHugeGapDetected()
, contact our support team.
In this case, the existing MessageCollection
instance should be cleared through the dispose()
method and a new one must be created for better performance.
Dispose of the collection
The dispose()
method should be called when you destroy the chat screen to notify the SDK that this collection is no longer visible.
For example, this should be used when the current user exits from the chat screen by pressing a back key or when a new collection has to be created due to a huge gap detected by onHugeGapDetected()
.