单聊消息回执
发送已读回执
当 A 给 B 发送一条消息,B 用户调用发送阅读回执接口之后,A 用户可在回执监听中收到已读通知。
方法
int sendPrivateReadReceiptMessage(
string targetId,
string channelId,
int timestamp
)
参数说明
参数 | 类型 | 说明 |
---|---|---|
targetId | string | 接收回执方的用户 ID |
channelId | string | 频道 ID,仅支持超级群使用,其他会话类型传 null 即可。 |
timestamp | int | 会话中已读的最后一条消息的发送时间戳,即 message 的 sentTime |
返回值
返回值 | 描述 |
---|---|
int | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例
int code = engine.sendPrivateReadReceiptMessage(
targetId,
channelId,
timestamp
);
回调方法
-
onPrivateReadReceiptMessageSent
接口调用结果的监听
delegate void OnPrivateReadReceiptMessageSentDelegate(int code,
string targetId,
string channelId,
long timestamp);
OnPrivateReadReceiptMessageSentDelegate onPrivateReadReceiptMessageSent;
参数说明
参数名 | 参数类型 | 描述 |
---|---|---|
Code | int | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
targetId | string | 调用接口时传入的 ID |
channelId | string | 调用接口时传入的频道 ID, |
timestamp | int | 调用接口时传入的时间戳 |
代码示例
engine.onPrivateReadReceiptMessageSent = delegate (
int code,
string targetId,
string channelId,
int timestamp
)
{
};
设置消息回执监听器
设置消息回执监听器, 用于接收消息回执。
方法
delegate void OnPrivateReadReceiptReceivedDelegate(string targetId,
string channelId,
long timestamp);
OnPrivateReadReceiptReceivedDelegate onPrivateReadReceiptReceived;
参数说明
参数 | 类型 | 说明 |
---|---|---|
targetId | string | 发送回执的会话 ID |
channelId | string | 频道 ID |
timestamp | int | 已读的最后一条消息的发送时间戳 |
代码示例
engine.onPrivateReadReceiptReceived = delegate(
string targetId,
string channelId,
int timestamp
)
{
}