NIMSDK-AOS  9.19.0
QChatSubscribeServerResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
3 import java.io.Serializable;
4 import java.util.List;
5 
6 public class QChatSubscribeServerResult implements Serializable {
7 
8  private final List<Long> failedList;
9 
10  /**
11  * 订阅失败的服务器Id列表
12  * @param failedList
13  */
15  List<Long> failedList) {
16  this.failedList = failedList;
17  }
18 
19  /**
20  * 获取订阅失败的服务器Id列表
21  * @return 订阅失败的服务器Id列表
22  */
23  public List<Long> getFailedList() {
24  return failedList;
25  }
26 
27  @Override
28  public String toString() {
29  return "QChatSubscribeServerResult{" +
30  "failedList=" + failedList +
31  '}';
32  }
33 }
QChatSubscribeServerResult(List< Long > failedList)
订阅失败的服务器Id列表
List< Long > getFailedList()
获取订阅失败的服务器Id列表