BGKSYAgoraLinkMicPlayerController.h 859 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // BGKSYAgoraLinkMicPlayerController.h
  3. // FanweApp
  4. //
  5. // Created by xfg on 2017/2/13.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. // 金山云、声网连麦观众、辅播端
  8. #import "BGKSYPlayerController.h"
  9. @interface BGKSYAgoraLinkMicPlayerController : BGTPlayController
  10. @property (nonatomic, strong) BGKSYAgoraStreamerBaseController *linkMicBaseController;
  11. @property (nonatomic, assign) BOOL isWaitingResponse; // 是否正在等待连麦中
  12. /*
  13. * 开始连麦
  14. * applicantId:申请连麦者ID
  15. * responderId:接收连麦者ID
  16. * roomId:房间ID
  17. */
  18. - (void)startLinkMic:(NSString *)applicantId andResponderId:(NSString *)responderId roomId:(NSString *)roomId;
  19. /*
  20. * 停止连麦
  21. * applicantId:申请连麦者ID
  22. */
  23. - (void)stopLinkMic:(NSString *)applicantId;
  24. -(void)reloadPlay;
  25. @end