多端同步阅读状态
同步消息未读状态
多端登录时,通知其它终端同步某个会话的消息未读状态。
方法
int syncConversationReadStatus(
RCIMConversationType type,
string targetId,
string channelId,
int timestamp
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
type | RCIMConversationType | 会话类型 |
targetId | string | 会话 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可 |
timestamp | int | 该 会话中已读的最后一条消息的发送时间戳 |
代码示例
int code = engine.syncConversationReadStatus(
type,
targetId,
channelId,
timestamp
);