Paginate local conversation list
The start time for fetching conversations, precise to milliseconds. 0 indicates the current time.
The number of items per page.
The channel ID. If not provided, all channel ID types will be fetched.
Whether to prioritize pinned conversations.
Returns a Promise of type IAsyncRes, where the data is an array of type IAReceivedConversation.
Batch Retrieve Conversation List
Information of the conversations to be retrieved, with a maximum of 100 conversations per request.
Returns a Promise of type IAsyncRes, where the data is an array of type IAReceivedConversation.
Search local messages within a specified time range
Conversation information
Search parameters of type ISearchMessageInTimeRangeOption
Returns a Promise of type IAsyncRes, with data containing an array of type IAReceivedMessage
Retrieve messages of specified types in a conversation
Conversation information
Configuration parameters of type IGetHistoryMessagesByTypesOption
Returns a Promise of type IAsyncRes, where the data contains an array of type IAReceivedMessage
Retrieve Local and Remote History Messages
Conversation information
Returns a Promise of type IAsyncRes, with data containing an array of type IAReceivedMessage
Set message status as read by the recipient using timestamp
Conversation information
The send time of the message. Messages sent before this time will be marked as read
Returns a Promise of type IAsyncRes, where the data is a boolean indicating the operation result
Set the received status of a message
The message ID. Note: The parameter to be passed is the number-type messageId, not the string-type messageUId.
The received status information, of type IReceivedStatusInfo.
Returns a Promise of type IAsyncRes, with data as void.
Set the sending status of a message
The message ID. Note: The parameter required is a number-type messageId, not a string-type messageUId.
The sending status of the message, of type SentStatus.
Returns a Promise of type IAsyncRes, where data is void.
Insert a message locally
Conversation information
Message body, supports BaseMessage type since 5.6.1
Insert message configuration, of type IInsertOptions
Returns a Promise of type IAsyncRes, where the data
is a message object of type IAReceivedMessage
Get the total message count of a conversation
Returns a Promise of type IAsyncRes, where the data represents the message count.
Method to Retrieve N Messages Around a Specified Timestamp Locally
Conversation information
Retrieval parameters
Returns a Promise of type IAsyncRes, where the data is a message list of type {@link IAReceivedMessage[]}
Get all local conversation lists
Channel ID. If not provided, retrieves all channel ID types.
Returns a Promise of type IAsyncRes, where the data is an array of type IAReceivedConversation.
Search local conversation list
Search keyword
Message types
Channel ID. If not provided, all channel ID types will be retrieved.
Returns a Promise of type IAsyncRes, where data is an array of type IAReceivedConversation.
Search local messages by keyword
Conversation information
Search keyword
Search time, messages before this time will be searched
Number of messages to retrieve
Message types, supported since 5.9.8. Supported types: text (RC:TxtMsg), file (RC:FileMsg), and custom messages with {@link searchProps} set
Returns a Promise of type IAsyncRes, where data contains an array of IAReceivedMessage
Search local messages by user ID
Conversation information
User ID
Search time, messages before this time will be searched
Number of messages to retrieve
Returns a Promise of type IAsyncRes, where the data contains an array of type IAReceivedMessage
Sets the received status of a message
The message ID
The received status
Clear historical messages in a conversation
Conversation information
Returns a Promise of type IAsyncRes, where data is void
Delete by timestamp
Conversation information
Specifies the timestamp before which messages should be deleted
Specifies whether to clean up the disk space used by the deleted data entries. Cleaning disk space is a blocking operation and may take a long time, so it is not recommended. If the data is erased, the uncleaned disk space will be reused in subsequent storage operations and will not affect data queries.
Returns a Promise of type IAsyncRes, where data is void
Check if electron extension is enabled
Indicates if the Electron extension is enabled.
Set RC Message Deduplication Switch
When the sender sends a message under poor network conditions, the message reaches the server but the sender does not receive the server's ack, causing the sender to believe the message failed to send. In this case, both the server and the recipient will receive the first message. The sender then retransmits the message, which reaches the server again, resulting in two messages on the server (with the same content but different messageUids). The recipient will receive two messages with the same content but different messageUids. The SDK will deduplicate the second message with the same content. This ensures that for retransmitted messages with the same content, the sender has only one message, and the recipient also has only one message. * When the message volume is low, message deduplication has minimal impact. However, when there is a large volume of local messages, deduplication can cause performance issues. When there is a large volume of local messages and message reception is sluggish, it is recommended to disable deduplication. *
5.7.1
Example of setting the RC message deduplication switch:
const checkDuplicate = true; const res = await RongIMLib.electronExtension.setCheckDuplicateMessage(checkDuplicate); console.info('Result of setting RC message deduplication switch:', res);