EMCallBuilderDelegate.h 938 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*!
  2. * \~chinese
  3. * @header EMCallBuilderDelegate.h
  4. * @abstract 此协议定义了实时语音/视频相关的回调
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMCallBuilderDelegate.h
  10. * @abstract This protocol defined the callbacks of real time voice/video
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #import <Foundation/Foundation.h>
  15. @protocol EMCallBuilderDelegate <NSObject>
  16. @optional
  17. /*!
  18. * \~chinese
  19. * 用户A给用户B拨打实时通话,用户B不在线,并且用户A设置了[EMCallOptions.isSendPushIfOffline == YES],则用户A会收到该回调
  20. *
  21. * @param aRemoteName 用户B的环信ID
  22. *
  23. * \~english
  24. * User A sends a real-time call to user B, user B is not online, and user A has set [EMCallOptions.isSendPushIfOffline == YES], user A will receive the callback
  25. *
  26. * @param aRemoteName The Hyphenate ID of user B
  27. */
  28. - (void)callRemoteOffline:(NSString *)aRemoteName;
  29. @end