getConversations

public abstract void getConversations(List<ConversationIdentifier> conversationIdentifiers, IRongCoreCallback.ResultCallback<List<Conversation>> callback)

Method to retrieve the conversation list.

Functionality: Fetches the corresponding conversation objects based on the provided list of conversation identifiers.

This method can be implemented to handle conversation retrieval, such as loading conversation data from a database or requesting it from the network.

Since

5.8.2

Parameters

conversationIdentifiers

List of conversation identifiers specifying the conversations to retrieve. Refer to io.rong.imlib.model.ConversationIdentifier.

callback

Callback for the conversation retrieval result, containing the list of conversation objects or error information. Refer to .