NIMSDK-AOS  9.16.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 
14 public class AVChatControlEvent extends AVChatCommonEvent {
15 
19  private byte controlCommand;
20 
21  public AVChatControlEvent(AVChatEventType event, AVChatData data, byte controlCommand) {
22  super(event, data);
23  this.controlCommand = controlCommand;
24  }
25 
31  public byte getControlCommand() {
32  return controlCommand;
33  }
34 }
网络通话控制命令(音视频开关及模式切换枚举)
AVChatControlEvent(AVChatEventType event, AVChatData data, byte controlCommand)