跳到主要内容

按会话类型设置免打扰

设置会话的消息免打扰状态

即时通讯业务用户为指定会话或超级群设置免打扰级别

方法

changeConversationTypeNotificationLevel(
type: RCIMIWConversationType,
level: RCIMIWPushNotificationLevel,
callback: IRCIMIWChangeConversationTypeNotificationLevelCallback
): Promise<number>;

参数说明

参数名参数类型描述
typeRCIMIWConversationType会话类型
levelRCIMIWPushNotificationLevel消息通知级别
callbackIRCIMIWChangeConversationTypeNotificationLevelCallback事件回调。SDK 从 5.3.1 版本开始支持 callback 方式回调。从 5.4.0 版本废弃该接口的其他回调方式。如果传入了 callback 参数,仅触发 callback 回调。

返回值

返回值描述
Promise<number>当次接口操作的状态码。0 代表调用成功 具体结果需要实现接口回调,非 0 代表当前接口调用操作失败,不会触发接口回调,详细错误参考状态码文档。

代码示例

let callback = {
onConversationTypeNotificationLevelChanged:(res) => {
//...
}};
let code = await engine.changeConversationTypeNotificationLevel(type, level, callback);

回调方法

  • setOnConversationTypeNotificationLevelChangedListener
setOnConversationTypeNotificationLevelChangedListener(listener?: ({code, type, level}) => void): void;

参数说明

参数名参数类型描述
codenumber接口回调的状态码,0 代表成功,非 0 代表出现异常
typeRCIMIWConversationType会话类型
levelRCIMIWPushNotificationLevel消息通知级别

代码示例

engine.setOnConversationTypeNotificationLevelChangedListener((res) => {
//...
});