NIMSDK-AOS  9.19.0
PassthroughServiceObserve.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.passthrough;
2 
3 import com.netease.nimlib.apt.annotation.NIMService;
4 import com.netease.nimlib.invocation.ObserverInterface;
7 
8 /**
9  * 应用服务器通过im下发消息
10  */
11 @NIMService("透传服务观察者")
12 @ObserverInterface
13 public interface PassthroughServiceObserve {
14 
15  /**
16  * 监听服务器下发透传消息
17  *
18  * @param observer 观察者,应用服务器透传消息。
19  * @param register true为注册监听,false为取消监听
20  */
21  void observePassthroughNotify(Observer<PassthroughNotifyData> observer, boolean register);
22 
23 }
void observePassthroughNotify(Observer< PassthroughNotifyData > observer, boolean register)
监听服务器下发透传消息