Package io.rong.imlib
Interface IRongCoreListener.ReadReceiptV4Listener
-
- All Implemented Interfaces:
public interface IRongCoreListener.ReadReceiptV4Listener
会话已读时间多端同步监听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)
群组中消息发送方,当收到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)
群组中消息发送方,当收到server的已读回执响应时,会回调此方法
- Parameters:
type
- 会话类型targetId
- 会话 idmessageUId
- 收到回执响应的消息的 uIdreadCount
- 已读人数totalCount
- 总人数
-
-
-
-