NIMSDK-AOS  9.19.0
RobotServiceObserve.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.robot;
2 
3 import com.netease.nimlib.apt.annotation.NIMService;
4 import com.netease.nimlib.invocation.ObserverInterface;
7 
8 /**
9  * 机器人数据变更接口
10  */
11 @NIMService("机器人服务观察者")
12 @ObserverInterface
13 public interface RobotServiceObserve {
14  /**
15  * 监听机器人变更通知
16  *
17  * @param observer 观察者,参数为收到的机器人变更通知。
18  * @param register true为注册监听,false为取消监听
19  */
20  void observeRobotChangedNotify(Observer<RobotChangedNotify> observer, boolean register);
21 }
void observeRobotChangedNotify(Observer< RobotChangedNotify > observer, boolean register)
监听机器人变更通知