Package io.rong.imlib
Interface IRongCoreListener.ReadReceiptV4Listener
-
- All Implemented Interfaces:
public interface IRongCoreListener.ReadReceiptV4Listener
Multi-device synchronization listener for conversation read time v4
-
-
Method Summary
Modifier and Type Method Description abstract void
onPrivateMessageReceiptResponse(ConversationType conversationType, String targetId, String channelId, long readTime)
abstract void
onGroupMessageReceiptResponse(ConversationType type, String targetId, String channelId, String messageUId, int readCount, int totalCount)
This method is called when the message sender in the group receives a read receipt response from the server. -
-
Method Detail
-
onPrivateMessageReceiptResponse
abstract void onPrivateMessageReceiptResponse(ConversationType conversationType, String targetId, String channelId, long readTime)
-
onGroupMessageReceiptResponse
abstract void onGroupMessageReceiptResponse(ConversationType type, String targetId, String channelId, String messageUId, int readCount, int totalCount)
This method is called when the message sender in the group receives a read receipt response from the server.
- Parameters:
type
- Conversation typetargetId
- Conversation IDmessageUId
- UID of the message for which the read receipt response was receivedreadCount
- Number of users who have read the messagetotalCount
- Total number of users
-
-
-
-