NIMSDK-AOS  9.19.0
NotificationChannelProvider.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.msg;
2 
3 public interface NotificationChannelProvider {
4  /**
5  * 弹出通知前获取通道ID的回调
6  *
7  * @param donNotDisturb 免打扰开启,而且收到的不是强推消息
8  * @param tooFast 两次通知间间隔短
9  * @param ring 是否响铃
10  * @param vibrate 是否振动
11  * @return 通道ID,如果返回""或者null,则使用默认通道
12  */
13  String getChannelId(boolean donNotDisturb, boolean tooFast, boolean ring, boolean vibrate);
14 }
String getChannelId(boolean donNotDisturb, boolean tooFast, boolean ring, boolean vibrate)
弹出通知前获取通道ID的回调