NIMSDK-AOS  10.9.71
RTSOnlineAckEvent.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.rts.model;
2 
3 import com.netease.nimlib.rts.RTSDataImpl;
5 
6 /**
7  * 在线通知被叫应答多端同步
8  */
9 public class RTSOnlineAckEvent extends RTSCommonEvent {
10 
11  private byte clientType; // 做出应答的客户端类型
12 
13  public RTSOnlineAckEvent(RTSEventType event, RTSDataImpl data, byte clientType) {
14  super(event, data);
15 
16  this.clientType = clientType;
17  }
18 
19  /**
20  * 获取应答的客户端类型
21  */
22  public byte getClientType() {
23  return clientType;
24  }
25 }
byte getClientType()
获取应答的客户端类型
RTSOnlineAckEvent(RTSEventType event, RTSDataImpl data, byte clientType)