Skip to main content

Message Introduction

The IMLib SDK defines the Message class for message transmission and management.

Message Model

The Message class encapsulates the following key data:

  • Attributes for message transmission: Sender ID, Receiver ID, Conversation Type, etc.
  • Message Content: Encapsulates the specific content carried by a message, divided into regular message content and media message content. For example, text message content (TextMessage) belongs to regular message content, while image message content (ImageMessage) belongs to media message content. The type of message content, often referred to as the "message type," determines whether to use the interface for sending regular messages or media messages.
tip

The term "message" in the documentation, such as text message, voice message, etc., sometimes refers to the specific content of the message inherited from MessageContent or MediaMessageContent.

The table below describes the key attributes of the Message class. For a complete list of attributes, refer to the API documentation.

Attribute NameTypeDescription
ObjectNameStringThe identifier for the message type, determined by the value in the io.rong.imlib.MessageTag annotation within the message content.
ContentMessageContentThe specific content carried by the message, which must be a subclass object of MessageContent or MediaMessageContent, encapsulating the specific data fields of different message types. The IM service provides predefined message types and specifies a cross-platform consistent message content structure (see Message Type Overview), such as text, voice, image, GIF, etc. You can also create custom message types by customizing the message content.
ConversationTypeConversationTypeThe conversation type enumeration, such as one-to-one chat, group chat, chatroom, ultra group, system conversation, etc. Refer to Conversation Introduction.
SenderUserIdStringThe user ID of the message sender.
TargetIdStringThe conversation ID (or target ID), used to identify the other end of the conversation.
  1. For one-to-one conversations, the Target ID is the user ID of the other end. Therefore, the Target ID for all sent and received messages will be the user ID of the other end. Note: The Target ID stored in the local message data for messages received by the current user is not the current user ID, but the user ID of the other end (the message sender).
  2. For group, chatroom, and ultra group conversations, the Target ID is the corresponding group, chatroom, or ultra group ID.
  3. For system conversations, since client users cannot reply to system messages, no Target ID is needed.
ChannelIdStringThe ultra group channel ID.
MessageIdintThe message ID, which is the unique ID of the message in local storage (database index unique value).
UIdStringThe message UID, which is globally unique under the same App Key. Only successfully sent messages have a unique ID.
MessageDirectionMessageDirectionThe message direction enumeration, divided into sending and receiving.
SentTimelongThe message sending time. The sending time is the local time of the server when the message reaches the server from the sending client. Uses UNIX timestamp in milliseconds.
ReceivedTimelongThe message receiving time. The receiving time is the local time of the client when the message reaches the receiving client. Uses UNIX timestamp in milliseconds.
SentStatusSentStatusThe status of the sent message, such as sending, sent, failed, canceled.
ReceivedStatusReceivedStatusThe status of the received message, such as whether it has been read or downloaded. For details, see Message Receiving Status.
ReadReceiptInfoReadReceiptInfoThe read receipt information for group chat messages. For details, refer to Group Chat Message Receipt.
isCanIncludeExpansionbooleanWhether message expansion is allowed. For details, refer to Message Expansion.
ExpansionMap<String, String>The message expansion information. For details, refer to Message Expansion.
ExtraStringThe additional information of the message, which is a local operation field and will not be sent to the server. Note the difference from MessageContent.extra, which is sent to the other end along with the message.
isOfflinebooleanWhether the message is an offline message. This is only valid in the callback method for receiving messages. If the message is an offline message, this value is true; otherwise, it is false. This attribute is supported starting from SDK version 5.4.4.
disableUpdateLastMessagebooleanWhether to disable updating the last message in the conversation. Default is false: update; true: do not update. This attribute is supported starting from SDK version 5.12.2.

MessageContent

The Message class encapsulates the content attribute, which represents the specific content carried by a message. The type of message content must inherit from the following base classes:

  • MessageContent - Regular message content. For example, the text message content (TextMessage) in the SDK's built-in message types inherits from MessageContent.
  • MediaMessageContent - Media message content, which inherits from the MessageContent base class and adds logic for handling media files. For example, the image message content (ImageMessage) in the SDK's built-in message types inherits from MediaMessageContent. When sending and receiving messages, the SDK determines whether the message type is a media type. If it is, the upload or download process for media files is triggered.

The IM service provides predefined, cross-platform consistent message content structures (see Message Type Overview), such as text, voice, image, GIF, etc. If you need to implement custom messages, you can inherit from MessageContent or MediaMessageContent to create custom message content.

Message Storage Strategy

The client SDK and IM server identify the type of message, its storage strategy on the local and server sides, and whether it counts towards unread messages through the message annotation (MessageTag). MessageTag is a Java annotation implemented to annotate message content classes. Message-specific content inherited from MessageContent or MediaMessageContent must carry the MessageTag annotation.

If you send messages of the SDK's built-in message types, the MessageTag is automatically added by default, and no additional action is required.

If you need to create custom message types, you need to learn how to correctly create message annotations. For details, see the following documentation: