Public Member Functions | |
void | onRecvNewMessage (V2TIMMessage msg) |
void | onRecvMessageReadReceipts (List< V2TIMMessageReceipt > receiptList) |
void | onRecvC2CReadReceipt (List< V2TIMMessageReceipt > receiptList) |
void | onRecvMessageRevoked (String msgID, V2TIMUserFullInfo operateUser, String reason) |
void | onRecvMessageModified (V2TIMMessage msg) |
void | onRecvMessageExtensionsChanged (String msgID, List< V2TIMMessageExtension > extensions) |
void | onRecvMessageExtensionsDeleted (String msgID, List< String > extensionKeys) |
void | onRecvMessageReactionsChanged (List< V2TIMMessageReactionChangeInfo > changeInfos) |
void | onRecvMessageRevoked (String msgID) |
|
inline |
Received a new message
msg | Message |
|
inline |
Notification of message read receipt(If the message sent by yourself supports read receipts, the message receiver calls sendMessageReadReceipts, and you will receive the notification)
|
inline |
C2C peer user conversation read notification(If the peer user calls the markC2CMessageAsRead interface, you will receive the callback, and the callback will only carry the peer userID and peer read timestamp information)
|
inline |
Received a message recall notification (Supported only in 7.4 and later versions)
msgID | Unique ID of a message |
operateUser | Operator info |
reason | Reason of recall |
|
inline |
Message content modified
|
inline |
Message extension changed
|
inline |
Message extension deleted
|
inline |
Message reaction changed This callback is an incremental callback for message reactions, and will only contain the changed reactions information. When the totalUserCount value in the changed reaction is 0, it means that no users are using the reaction, and you can remove the display of the reaction on the UI.
|
inline |
Received a message recall notification (It is deprecated and discouraged to use this callback. Please use onRecvMessageRevoked(String, V2TIMUserFullInfo, String) instead )
msgID | Unique ID of a message |