EMConferenceManagerDelegate.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. /*!
  2. * \~chinese
  3. * @header EMConferenceManagerDelegate.h
  4. * @abstract 此协议定义了多人实时语音/视频相关的回调
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMConferenceManagerDelegate.h
  10. * @abstract This protocol defines a multiplayer real-time voice / video related callback
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #ifndef EMConferenceManagerDelegate_h
  15. #define EMConferenceManagerDelegate_h
  16. #import <Foundation/Foundation.h>
  17. #import "EMCommonDefs.h"
  18. #import "EMCallEnum.h"
  19. #import "EMCallConference.h"
  20. #import "EMCallStream.h"
  21. #import "EMConferenceAttribute.h"
  22. @class EMError;
  23. /*!
  24. * \~chinese
  25. * 多人实时语音/视频相关的回调
  26. *
  27. * \~english
  28. * Callbacks of multiplayer real time voice/video
  29. */
  30. @protocol EMConferenceManagerDelegate <NSObject>
  31. @optional
  32. /*!
  33. * \~chinese
  34. * 有人加入会议
  35. *
  36. * @param aConference 会议实例
  37. * @param aMember 加入的用户
  38. *
  39. * \~english
  40. * Someone joined the conference
  41. *
  42. * @param aConference EMConference instance
  43. * @param aMember The joined user
  44. */
  45. - (void)memberDidJoin:(EMCallConference *)aConference
  46. member:(EMCallMember *)aMember;
  47. /*!
  48. * \~chinese
  49. * 有人离开会议
  50. *
  51. * @param aConference 会议实例
  52. * @param aMember 离开的用户
  53. *
  54. * \~english
  55. * Someone leaved the conference
  56. *
  57. * @param aConference EMConference instance
  58. * @param aMember The leaved user
  59. */
  60. - (void)memberDidLeave:(EMCallConference *)aConference
  61. member:(EMCallMember *)aMember;
  62. /*!
  63. * \~chinese
  64. * 自己的角色发生变化
  65. *
  66. * @param aConference 会议实例
  67. *
  68. * \~english
  69. * The role has changed
  70. *
  71. * @param aConference EMConference instance
  72. */
  73. - (void)roleDidChanged:(EMCallConference *)aConference;
  74. /*!
  75. * \~chinese
  76. * 管理员新增
  77. *
  78. * @param aConference 会议实例
  79. * @param adminmemid 新的管理员memid
  80. *
  81. * \~english
  82. * The admin has added
  83. *
  84. * @param aConference EMConference instance
  85. * @param adminmemid The new admin memid
  86. */
  87. - (void)adminDidChanged:(EMCallConference *)aConference
  88. newAdmin:(NSString*)adminmemid;
  89. /*!
  90. * \~chinese
  91. * 管理员放弃
  92. *
  93. * @param aConference 会议实例
  94. * @param adminmemid 放弃管理员的memid
  95. *
  96. * \~english
  97. * The admin has removed
  98. *
  99. * @param aConference EMConference instance
  100. * @param adminmemid The removed admin memid
  101. */
  102. - (void)adminDidChanged:(EMCallConference *)aConference
  103. removeAdmin:(NSString*)adminmemid;
  104. /*!
  105. * \~chinese
  106. * 本地pub流失败
  107. *
  108. * @param aConference 会议实例
  109. * @param aError 错误信息
  110. *
  111. * \~english
  112. * The local stream pub failed
  113. *
  114. * @param aConference EMConference instance
  115. * @param aError The error info
  116. */
  117. - (void)streamPubDidFailed:(EMCallConference *)aConference
  118. error:(EMError*)aError;
  119. /*!
  120. * \~chinese
  121. * 本地update流失败
  122. *
  123. * @param aConference 会议实例
  124. * @param aError 错误信息
  125. *
  126. * \~english
  127. * The local stream pub failed
  128. *
  129. * @param aConference EMConference instance
  130. * @param aError The error info
  131. */
  132. - (void)streamUpdateDidFailed:(EMCallConference *)aConference
  133. error:(EMError*)aError;
  134. /*!
  135. * \~chinese
  136. * 有新的数据流上传
  137. *
  138. * @param aConference 会议实例
  139. * @param aStream 数据流实例
  140. *
  141. * \~english
  142. * New data streams pulished
  143. *
  144. * @param aConference EMConference instance
  145. * @param aStream EMCallStream instance
  146. */
  147. - (void)streamDidUpdate:(EMCallConference *)aConference
  148. addStream:(EMCallStream *)aStream;
  149. /*!
  150. * \~chinese
  151. * 有数据流移除
  152. *
  153. * @param aConference 会议实例
  154. * @param aStream 数据流实例
  155. *
  156. * \~english
  157. * Stream removed
  158. *
  159. * @param aConference EMConference instance
  160. * @param aStream EMCallStream instance
  161. */
  162. - (void)streamDidUpdate:(EMCallConference *)aConference
  163. removeStream:(EMCallStream *)aStream;
  164. /*!
  165. * \~chinese
  166. * 数据流有更新(是否静音,视频是否可用)
  167. *
  168. * @param aConference 会议实例
  169. * @param aStream 数据流实例
  170. *
  171. * \~english
  172. * Stream is updated (whether it is mute, video is available)
  173. *
  174. * @param aConference EMConference instance
  175. * @param aStream EMCallStream instance
  176. */
  177. - (void)streamDidUpdate:(EMCallConference *)aConference
  178. stream:(EMCallStream *)aStream;
  179. /*!
  180. * \~chinese
  181. * 会议已经结束
  182. *
  183. * @param aConference 会议实例
  184. * @param aReason 结束原因
  185. * @param aError 错误信息
  186. *
  187. * \~english
  188. * The conference is over
  189. *
  190. * @param aConference EMConference instance
  191. * @param aReason The end reason
  192. * @param aError The error
  193. */
  194. - (void)conferenceDidEnd:(EMCallConference *)aConference
  195. reason:(EMCallEndReason)aReason
  196. error:(EMError *)aError;
  197. /*!
  198. * \~chinese
  199. * 数据流已经开始传输数据
  200. *
  201. * @param aConference 会议实例
  202. * @param aStreamId 数据流ID
  203. *
  204. * \~english
  205. * The stream has already begun to transfer data
  206. *
  207. * @param aConference EMConference instance
  208. * @param aStreamId Stream ID
  209. */
  210. - (void)streamStartTransmitting:(EMCallConference *)aConference
  211. streamId:(NSString *)aStreamId;
  212. /*!
  213. * \~chinese
  214. * 用户A和用户B正在通话中,用户A的网络状态出现不稳定,用户A会收到该回调
  215. *
  216. * @param aSession 会话实例
  217. * @param aStatus 当前状态
  218. *
  219. * \~english
  220. * User A and B is on the call, A network status is not stable, A will receive the callback
  221. *
  222. * @param aSession Session instance
  223. * @param aStatus Current status
  224. */
  225. - (void)conferenceNetworkDidChange:(EMCallConference *)aConference
  226. status:(EMCallNetworkStatus)aStatus;
  227. /*!
  228. * \~chinese
  229. * 用户A用户B在同一个会议中,用户A开始说话时,用户B会收到该回调
  230. *
  231. * @param aSession 会话实例
  232. * @param aStreamIds 数据流ID列表
  233. *
  234. * \~english
  235. * User A and B is on the call, when A starts speaking, B will receive the callback
  236. *
  237. * @param aSession Session instance
  238. * @param aStreamIds The list of stream id
  239. */
  240. - (void)conferenceSpeakerDidChange:(EMCallConference *)aConference
  241. speakingStreamIds:(NSArray *)aStreamIds;
  242. - (void)conferenceAttributeUpdated:(EMCallConference *)aConference
  243. attributes:(NSArray <EMConferenceAttribute *>*)attrs;
  244. #pragma mark - EM_DEPRECATED_IOS 3.4.3
  245. /*!
  246. * \~chinese
  247. * 有人加入会议
  248. *
  249. * @param aConference 会议实例
  250. * @param aUserName 加入的用户
  251. *
  252. * \~english
  253. * Someone joined the conference
  254. *
  255. * @param aConference EMConference instance
  256. * @param aUserName The joined user
  257. */
  258. - (void)userDidJoin:(EMCallConference *)aConference
  259. user:(NSString *)aUserName EM_DEPRECATED_IOS(3_1_0, 3_4_3, "Use -[EMConferenceManagerDelegate memberDidJoin:member:]");
  260. /*!
  261. * \~chinese
  262. * 有人离开会议
  263. *
  264. * @param aConference 会议实例
  265. * @param aMember 离开的用户
  266. *
  267. * \~english
  268. * Someone leaved the conference
  269. *
  270. * @param aConference EMConference instance
  271. * @param aMember The leaved user
  272. */
  273. - (void)userDidLeave:(EMCallConference *)aConference
  274. user:(NSString *)aUserName EM_DEPRECATED_IOS(3_1_0, 3_4_3, "Use -[EMConferenceManagerDelegate memberDidLeave:member:]");
  275. /*!
  276. * \~chinese
  277. * 被邀请加入会议
  278. *
  279. * @param aConfId 会议ID (EMCallConference.confId)
  280. * @param aPassword 会议密码
  281. * @param aExt 扩展信息
  282. *
  283. * \~english
  284. * Invited to join the conference
  285. *
  286. * @param aConfId Conference ID (EMCallConference.confId)
  287. * @param aPassword The password of the conference
  288. * @param aExt Extended Information
  289. */
  290. - (void)userDidRecvInvite:(NSString *)aConfId
  291. password:(NSString *)aPassword
  292. ext:(NSString *)aExt EM_DEPRECATED_IOS(3_1_0, 3_4_3, "Use -DELETE");
  293. @end
  294. #endif /* EMConferenceManagerDelegate_h */