跳到主要内容

多端同步阅读状态

同步消息未读状态

多端登录时,通知其它终端同步某个会话的消息未读状态。

方法

int syncConversationReadStatus(
RCIMConversationType type,
string targetId,
string channelId,
int timestamp
)

参数说明

参数类型说明
typeRCIMConversationType会话类型
targetIdstring会话 ID
channelIdstring频道 ID,仅支持超级群使用,其他会话类型传 null 即可
timestampint该会话中已读的最后一条消息的发送时间戳

代码示例

int code = engine.syncConversationReadStatus(
type,
targetId,
channelId,
timestamp
);

返回值

返回值描述
int当次接口操作状态码,并不代表最终操作结果,状态码详细信息

代码示例

int code = engine.syncConversationReadStatus(
type,
targetId,
channelId,
timestamp
);

回调方法

  • onConversationReadStatusSynced
delegate void OnConversationReadStatusSyncedDelegate(
int code,
RCIMConversationType type,
string targetId,
string channelId,
long timestamp);

OnConversationReadStatusSyncedDelegate onConversationReadStatusSynced;

参数说明

参数类型说明
codeint接口回调的状态码,0 代表成功,非 0 代表出现异常
typeRCIMConversationType调用接口时传入的会话类型
targetIdstring调用接口时传入的会话ID
channelIdstring调用接口时传入的频道 ID
timestampint该会话中已读的最后一条消息的发送时间戳

代码示例

engine.onConversationReadStatusSynced = delegate(
int code,
RCIMConversationType type,
string targetId,
string channelId,
int timestamp
)
{

}

监听同步消息未读状态

当用户调用syncConversationReadStatus同步消息未读状态时,远端用户会收到该回调

方法

delegate void OnConversationReadStatusSyncMessageReceivedDelegate(
RCIMConversationType type,
string targetId,
long timestamp);

OnConversationReadStatusSyncMessageReceivedDelegate onConversationReadStatusSyncMessageReceived;

参数说明

参数类型说明
typeRCIMConversationType会话类型
targetIdstring会话ID

代码示例

engine.onConversationReadStatusSyncMessageReceived = delegate(
RCIMConversationType type,
string targetId,
int timestamp
)
{

}