NIMSDK-AOS  9.16.0
RTSControlEvent.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.rts.model;
2 
3 import com.netease.nimlib.rts.RTSDataImpl;
5 
9 public class RTSControlEvent extends RTSCommonEvent {
10 
11  private byte command;
12  private String commandInfo;
13 
14  public RTSControlEvent(RTSEventType event, RTSDataImpl data, byte command, String commandInfo) {
15  super(event, data);
16  this.command = command;
17  this.commandInfo = commandInfo;
18  }
19 
20  public byte getCommand() {
21  return command;
22  }
23 
24  public String getCommandInfo() {
25  return commandInfo;
26  }
27 }
RTSControlEvent(RTSEventType event, RTSDataImpl data, byte command, String commandInfo)