NIMSDK-AOS  10.9.76
V2NIMNotificationListener.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.v2.notification;
2 
3 import java.util.List;
4 
5 public interface V2NIMNotificationListener {
6 
7  /**
8  * 通知监听回调
9  *
10  * @param customNotifications 收到的自定义通知内容
11  */
12  void onReceiveCustomNotifications(List<V2NIMCustomNotification> customNotifications);
13 
14  /**
15  * 收到广播通知, 该消息从服务端API发起,所有用户均会收到
16  *
17  * @param broadcastNotifications 广播消息
18  */
19  void onReceiveBroadcastNotifications(List<V2NIMBroadcastNotification> broadcastNotifications);
20 }
void onReceiveCustomNotifications(List< V2NIMCustomNotification > customNotifications)
通知监听回调
void onReceiveBroadcastNotifications(List< V2NIMBroadcastNotification > broadcastNotifications)
收到广播通知, 该消息从服务端API发起,所有用户均会收到