Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace electronExtension

Index

Electron Exclusive

  • setCheckDuplicateMessage(checkDuplicate?: boolean): Promise<IAsyncRes<boolean>>
  • Set RC Message Deduplication Switch

    description

    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. *

    since

    5.7.1

    example

    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);

    Parameters

    • Optional checkDuplicate: boolean

      Whether to enable RC message deduplication mechanism. true: enable, false: disable

    Returns Promise<IAsyncRes<boolean>>

    Returns a IAsyncRes type Promise, where data is a boolean indicating the operation result

Electron Only

  • Paginate local conversation list

    description

    This interface is exclusive to the Electron platform for paginating the local conversation list. Note: Ultra group conversations are not included.

    defaultvalue

    topPriority false

    since

    5.4.0

    example

    Example of paginating the local conversation list: const startTime = 0; const count = 10; const conversationList = await RongIMLib.electronExtension.getConversationList(startTime, count); console.log('Paginated local conversation list result:', conversationList);

    Parameters

    • startTime: number

      The start time for fetching conversations, precise to milliseconds. 0 indicates the current time.

    • count: number

      The number of items per page.

    • Optional channelId: string

      The channel ID. If not provided, all channel ID types will be fetched.

    • Optional topPriority: boolean

      Whether to prioritize pinned conversations.

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of type IAReceivedConversation.

  • Batch Retrieve Conversation List

    description

    This API is exclusive to the Electron platform for batch retrieval of conversation lists. It returns conversation information of type IReceivedConversation by providing the unique identifier attribute of the conversation. Note:

    1. Only supports one-to-one chat, group chat, and system conversations.
    since

    5.9.9

    example

    Example of batch retrieving conversation list:

    const conversations = [{ conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId' }]; const conversationList = await RongIMLib.electronExtension.getConversations(conversations); console.log('Batch conversation list result:', conversationList);

    Parameters

    • conversations: IConversationOption[]

      Information of the conversations to be retrieved, with a maximum of 100 conversations per request.

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of type IAReceivedConversation.

  • Search local messages within a specified time range

    description

    This interface is exclusively available for searching local messages on the Electron platform

    since

    5.4.0

    example

    Example of searching local messages within a specified time range:

    const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId' } const option = { keyword: 'keyword', startTime: 0, endTime: 1632728573423, } const res = await RongIMLib.electronExtension.searchMessageInTimeRange(conversation, option) console.info('Search local messages within a specified time range result:', res);

    Parameters

    Returns Promise<IAsyncRes<{ messages: IAReceivedMessage[] }>>

    Returns a Promise of type IAsyncRes, with data containing an array of type IAReceivedMessage

  • Retrieve messages of specified types in a conversation

    description

    This interface is exclusively available on the Electron platform for retrieving messages of specified types in a conversation.

    since

    5.4.0

    example

    Example of retrieving messages of specified types in a conversation: const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId' }; const options = { messageTypes: [RongIMLib.MessageType.TEXT] }; const res = await RongIMLib.electronExtension.getHistoryMessagesByMessageTypes(conversation, option); console.info('Result of retrieving messages of specified types in a conversation:', res);

    Parameters

    Returns Promise<IAsyncRes<{ messages: IAReceivedMessage[] } & GetHistoryMessageResult>>

    Returns a Promise of type IAsyncRes, where the data contains an array of type IAReceivedMessage

  • Retrieve Local and Remote History Messages

    description

    This interface is exclusive to the Electron platform and requires the business layer to enable the Cloud Storage for One-to-One and Group Messages service. The difference between this method and getRemoteHistoryMessages is that getContinuousMessages first queries the messages stored in the local database for the specified conversation. When the local messages cannot meet the query conditions, it then queries the history messages stored in the cloud for one-to-one and group messages, returning a continuous and adjacent list of message objects. Note:

    1. When paginating, the timestamp used in the next request must be the one returned by the getContinuousMessages interface.
    2. The logic for retrieving history messages: prioritize fetching local history messages, and if unavailable, fetch remote history messages. However, this may lead to message gaps due to offline or message compensation storage duration. Message gap phenomenon: Due to offline or message compensation storage duration, messages stored in the local database may be discontinuous or missing for a certain period. For example, if both offline and compensation messages are stored for 1 day, on the first day, A sends 1, 2, 3 to B, and on the second day, A sends 4, 5, 6 to B. When B logs in on the second day, due to the 1-day storage duration, B can only receive 4, 5, 6. Messages 1, 2, 3 are lost.
    3. The Count field in the option only supports a range of 1-100.
    since

    5.9.6

    example

    Example of retrieving local and remote history messages: const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId' }; const options = { timestamp: 0, count: 20, order: 0 }; const res = await RongIMLib.electronExtension.getContinuousMessages(conversation, option); console.info('Result of retrieving local and remote history messages:', res);

    Parameters

    Returns Promise<IAsyncRes<{ list: IAReceivedMessage[]; timestamp: number; hasMore: boolean }>>

    Returns a Promise of type IAsyncRes, with data containing an array of type IAReceivedMessage

  • Set message status as read by the recipient using timestamp

    description

    Marks messages sent before the specified timestamp as read by the recipient, with the status value set to SentStatus.READ

    since

    5.4.0

    example

    Example of setting message status as read by the recipient using timestamp: const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId' }; const timestamp = Date.now(); const res = await RongIMLib.electronExtension.setMessageStatusToRead(conversation, timestamp); console.info('Result of setting message status as read by the recipient using timestamp:', res);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • timestamp: number

      The send time of the message. Messages sent before this time will be marked as read

    Returns Promise<IAsyncRes<boolean>>

    Returns a Promise of type IAsyncRes, where the data is a boolean indicating the operation result

  • Set the received status of a message

    description

    This interface is exclusive to the Electron platform for setting the received status of a message, supporting multiple status settings simultaneously. Sets the received status information of messages sent by the other party.

    since

    5.9.3

    example

    Example of setting the received status of a message:

    const messageId = 123; const receivedStatusInfo = { isRead: true, isListened: true, }; const res = await RongIMLib.electronExtension.setMessageReceivedStatusInfo(messageId, receivedStatusInfo); console.info('Result of setting the received status of a message:', res);

    Parameters

    • messageId: number

      The message ID. Note: The parameter to be passed is the number-type messageId, not the string-type messageUId.

    • receivedStatusInfo: IReceivedStatusInfo

      The received status information, of type IReceivedStatusInfo.

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, with data as void.

  • Set the sending status of a message

    description

    This interface is exclusive to the Electron platform for setting the sending status of messages sent by the user.

    since

    5.4.0

    example

    Example of setting the sending status of a message:

    const messageId = 123; const sentStatus = RongIMLib.SentStatus.SENT; const res = await RongIMLib.electronExtension.setMessageSentStatus(messageId, sentStatus); console.info('Result of setting the sending status of the message:', res);

    Parameters

    • messageId: number

      The message ID. Note: The parameter required is a number-type messageId, not a string-type messageUId.

    • sentStatus: SentStatus

      The sending status of the message, of type SentStatus.

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where data is void.

  • Insert a message locally

    description

    This interface is exclusive to the Electron platform. It inserts a message into the local database without sending it to the server. Note: When inserting a message, the messageUId will not be stored in the database.

    since

    5.4.0

    defaultvalues

    options = {}

    example

    Example of inserting a message:

    const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId', }; const message = new RongIMLib.TextMessage({ content: 'hello' }); const options = { searchContent: 'hello', }; const res = await RongIMLib.electronExtension.insertMessage(conversation, message, options); console.info('Insert message result:', res);

    Parameters

    Returns Promise<IAsyncRes<IAReceivedMessage>>

    Returns a Promise of type IAsyncRes, where the data is a message object of type IAReceivedMessage

  • Get the total message count of a conversation

    description

    This API is exclusive to the Electron platform and retrieves the total message count for a specified conversation.

    since

    5.7.2

    example

    Example of getting the total message count of a conversation:

    const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId', }; const res = await RongIMLib.electronExtension.getMessageCount(conversation); console.info('Result of getting the total message count:', res);

    Parameters

    Returns Promise<IAsyncRes<number>>

    Returns a Promise of type IAsyncRes, where the data represents the message count.

  • Method to Retrieve N Messages Around a Specified Timestamp Locally

    description

    This interface is exclusive to the Electron platform and retrieves N messages around a specified timestamp locally.

    since

    5.9.8

    example

    Example of retrieving N messages around a specified timestamp locally:

    const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId', }; const option = { timestamp: 0, beforeCount: 10, afterCount: 10, }; const res = await RongIMLib.electronExtension.getMessagesAroundTimestamp(conversation, option); console.info('Result of retrieving N messages around a specified timestamp locally:', res);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • option: { timestamp: number; beforeCount: number; afterCount: number }

      Retrieval parameters

      • timestamp: number
      • beforeCount: number
      • afterCount: number

    Returns Promise<IAsyncRes<IAReceivedMessage[]>>

    Returns a Promise of type IAsyncRes, where the data is a message list of type {@link IAReceivedMessage[]}

Electron exclusive

  • Get all local conversation lists

    description

    This interface is only applicable to the Electron platform for retrieving all local conversation lists. Note: This interface does not include ultra group conversations.

    since

    5.4.0

    example

    Example of getting all local conversation lists: const conversationList = await RongIMLib.electronExtension.getAllConversationList(); console.log('Result of getting all local conversation lists:', conversationList);

    Parameters

    • Optional channelId: string

      Channel ID. If not provided, retrieves all channel ID types.

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, where the data is an array of type IAReceivedConversation.

Electron only

  • Search local conversation list

    description

    This interface is exclusively for searching the local conversation list on the Electron platform. Note:

    1. Does not include ultra group conversations.
    2. Supports querying custom message types. Search fields must be set when registering custom messages; otherwise, searching will not be possible. For details, refer to the searchProps parameter in registerMessageType.
    since

    5.4.0

    example

    Example of searching the local conversation list:

    const keyword = 'keyword'; const messageTypes = [RongIMLib.MessageType.TEXT]; const conversationList = await RongIMLib.electronExtension.searchConversationByContent(keyword, messageTypes); console.log('Search local conversation list result:', conversationList);

    Parameters

    • keyword: string

      Search keyword

    • messageTypes: string[]

      Message types

    • Optional channelId: string

      Channel ID. If not provided, all channel ID types will be retrieved.

    Returns Promise<IAsyncRes<IAReceivedConversation[]>>

    Returns a Promise of type IAsyncRes, where data is an array of type IAReceivedConversation.

  • Search local messages by keyword

    description

    This interface is only available on the Electron platform for searching local messages Note:

    1. Text-type messages only support searching content, while file-type messages only support searching name
    2. Custom messages are determined by the searchProps parameter in registerMessageType
    3. Reference messages are not searchable
    4. If channelId is not provided, messages will be searched across all channelIds
    5. If messageTypes is not provided, all searchable message types will be searched
    since

    5.4.0

    example

    Example of searching local messages by keyword: const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId', }; const keyword = 'keyword'; const startTime = Date.now(); const count = 10; const res = await RongIMLib.electronExtension.searchMessages(conversation, keyword, startTime, count); console.info('Search local messages by keyword result:', res);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • keyword: string

      Search keyword

    • startTime: number

      Search time, messages before this time will be searched

    • count: number

      Number of messages to retrieve

    • Optional messageTypes: string[]

      Message types, supported since 5.9.8. Supported types: text (RC:TxtMsg), file (RC:FileMsg), and custom messages with {@link searchProps} set

    Returns Promise<IAsyncRes<{ messages: IAReceivedMessage[]; count: number | undefined }>>

    Returns a Promise of type IAsyncRes, where data contains an array of IAReceivedMessage

  • Search local messages by user ID

    description

    This interface is exclusive to the Electron platform and searches for messages within a specified time range across all channels of a given conversation based on user ID.

    since

    5.7.10

    example

    Example of searching local messages by user ID: const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId' }; const userId = 'userId'; const startTime = Date.now(); const count = 10; const res = await RongIMLib.electronExtension.searchMessagesByUser(conversation, userId, startTime, count); console.info('Search local messages by user ID', res);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • userId: string

      User ID

    • startTime: number

      Search time, messages before this time will be searched

    • count: number

      Number of messages to retrieve

    Returns Promise<IAsyncRes<{ messages: IAReceivedMessage[] }>>

    Returns a Promise of type IAsyncRes, where the data contains an array of type IAReceivedMessage

  • Sets the received status of a message

    since

    5.4.0

    deprecated

    @since 5.9.3 MLib SDK version ≧ 5.9.3, it is recommended to use the setMessageReceivedStatusInfo interface instead

    Parameters

    • messageId: number

      The message ID

    • receivedStatus: ReceivedStatus

      The received status

    Returns Promise<IAsyncRes<void>>

  • deleteMessages(messageIds: number[]): Promise<IAsyncRes<void>>
  • Delete messages by message ID

    description

    This API is exclusively available on the Electron platform. Deletes one or a group of messages from the local message database by their message IDs. When deleting multiple messages, ensure that all message IDs belong to the same conversation.

    since

    5.4.0

    example

    Example of deleting messages by message ID: const messageIds = [1, 2]; const res = await RongIMLib.electronExtension.deleteMessages(messageIds); console.info('Result of deleting messages by message ID:', res);

    Parameters

    • messageIds: number[]

      List of message IDs, which must belong to the same conversation

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where data is void

  • Clear historical messages in a conversation

    description

    This interface is exclusive to the Electron platform and deletes all messages of the specified conversation from the local message database.

    since

    5.4.0

    example

    Example of clearing historical messages in a conversation:

    const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId', }; const res = await RongIMLib.electronExtension.clearMessages(conversation); console.info('Result of clearing historical messages in a conversation:', res);

    Parameters

    Returns Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where data is void

  • Delete by timestamp

    description

    This API is exclusive to the Electron platform. It deletes messages older than the specified timestamp from the local message database for a single conversation.

    since

    5.4.0

    example

    Example of deleting by timestamp: const conversation = { conversationType: RongIMLib.ConversationType.PRIVATE, targetId: 'targetId', }; const timestamp = Date.now(); const cleanSpace = false; const res = await RongIMLib.electronExtension.deleteMessagesByTimestamp(conversation, timestamp, cleanSpace); console.info('Delete by timestamp result:', res);

    Parameters

    • conversation: IConversationOption

      Conversation information

    • timestamp: number

      Specifies the timestamp before which messages should be deleted

    • cleanSpace: boolean

      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 Promise<IAsyncRes<void>>

    Returns a Promise of type IAsyncRes, where data is void

  • clearLocalData(): Promise<IAsyncRes<boolean>>
  • Clear local data

    description

    This method is used to clear local data, including message lists, conversation lists, and the timestamp of pulled messages. Note: After clearing, logging in again will be treated as a new device for message pulling, and the operation cannot be restored. Use with caution.

    since

    5.4.0

    example

    Example of clearing local data:

    const res = await RongIMLib.electronExtension.clearLocalData();
    console.info('Local data clearing result:', res);

    Returns Promise<IAsyncRes<boolean>>

    Returns a IAsyncRes type Promise, where data is of boolean type, indicating whether the clearing was successful.

  • enable(): boolean
  • Check if electron extension is enabled

    description

    This method is used to determine whether the Electron extension is currently enabled.

    since

    5.8.3

    example

    Example of checking if Electron extension is enabled:

    const res = await RongIMLib.electronExtension.enable();
    console.info('Electron extension enabled status:', res);

    Returns boolean

    Indicates if the Electron extension is enabled.