NIMSDK-AOS  9.19.0
AVChatControlEvent.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat.model;
7 
10 
11 /**
12  * 网络通话控制命令通知
13  */
14 public class AVChatControlEvent extends AVChatCommonEvent {
15 
16  /**
17  * @see AVChatControlCommand
18  */
19  private byte controlCommand;
20 
21  public AVChatControlEvent(AVChatEventType event, AVChatData data, byte controlCommand) {
22  super(event, data);
23  this.controlCommand = controlCommand;
24  }
25 
26  /**
27  * 获取控制命令枚举
28  *
29  * @see AVChatControlCommand
30  */
31  public byte getControlCommand() {
32  return controlCommand;
33  }
34 }
网络通话控制命令(音视频开关及模式切换枚举)
AVChatControlEvent(AVChatEventType event, AVChatData data, byte controlCommand)