BGKSYAgoraLinkMicStreamerController.h 644 B

1234567891011121314151617181920212223242526
  1. //
  2. // BGKSYAgoraLinkMicStreamerController.h
  3. // FanweApp
  4. //
  5. // Created by xfg on 2017/2/20.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. // 金山云、声网连麦主播端
  8. #import "BGKSYStreamerController.h"
  9. @interface BGKSYAgoraLinkMicStreamerController : BGKSYAgoraStreamerBaseController
  10. /*
  11. * 开始连麦
  12. * applicantId:申请连麦者ID
  13. * responderId:接收连麦者ID
  14. * roomId:房间ID
  15. */
  16. - (void)startLinkMic:(NSString *)applicantId andResponderId:(NSString *)responderId roomId:(NSString *)roomId;
  17. /*
  18. * 停止连麦
  19. * applicantId:申请连麦者ID
  20. */
  21. - (void)stopLinkMic:(NSString *)applicantId;
  22. @end