NIMSDK-AOS  9.21.15
ChatroomMessageSendOption.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.chatroom.model;
2 
4 
5 /**
6  * 发送聊天室消息Option
7  */
9 
10  /**
11  * 路由抄送相关配置
12  */
13  private NIMMessageRouteConfig routeConfig;
14 
15  /**
16  * 获取路由抄送相关配置
17  *
18  * @return 路由抄送相关配置
19  */
21  return routeConfig;
22  }
23 
24  /**
25  * 设置路由抄送相关配置
26  *
27  * @param routeConfig 路由抄送相关配置
28  */
29  public void setRouteConfig(NIMMessageRouteConfig routeConfig) {
30  this.routeConfig = routeConfig;
31  }
32 }
NIMMessageRouteConfig getRouteConfig()
获取路由抄送相关配置
void setRouteConfig(NIMMessageRouteConfig routeConfig)
设置路由抄送相关配置