按会话类型设置免打扰
设置会话的消息免打扰状态
即时通讯业务用户为指定会话类型或超级群设置免打扰级别
方法
changeConversationTypeNotificationLevel(type: RCIMIWConversationType, level: RCIMIWPushNotificationLevel): Promise<number>;
参数说明
参数 | 类型 | 说明 |
---|---|---|
conversationType | RCIMIWConversationType | 会话类型。不支持聊天室类型,因为聊天室默认就是不接受消息提醒的。 |
level | RCIMIWPushNotificationLevel | 免打扰级别,参考免打扰概述 |
返回值
返回值 | 描述 |
---|---|
Promise<number> | 当次接口操作状态码,并不代表最终操作结果,状态码详细信息 |
代码示例
let promise = main.engine?.changeConversationTypeNotificationLevel(
type,
level
)
.then((code: number) => {});
回调方法
- setOnConversationTypeNotificationLevelChangedListener
setOnConversationTypeNotificationLevelChangedListener(listener?: (code: number, type: RCIMIWConversationType, level: RCIMIWPushNotificationLevel) => void): void;
参数说明
参数 | 类型 | 说明 |
---|---|---|
code | number | 接口回调的状态码,0 代表成功,非 0 代表出现异常 |
type | RCIMIWConversationType | 调用接口时传入的会话类型 |
level | RCIMIWPushNotificationLevel | 调用接口时传入的免打扰级别,参考免打扰概述 |
代码示例
engine.setOnConversationTypeNotificationLevelChangedListener(
(
code: number,
type: RCIMIWConversationType,
level: RCIMIWPushNotificationLevel
) => {}
);