XGVoIPService.h 540 B

123456789101112131415161718192021
  1. //
  2. // XGVoIPService.h
  3. // XG-SDK
  4. //
  5. // Created by boblv on 2022/3/4.
  6. // Copyright © 2022 TEG of Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /// VoIP通知内容类
  10. @interface XGVoIPService : NSObject
  11. /// 向TPNS服务器提交Token
  12. /// @param voipToken 系统返回的VoIP Token
  13. + (void)registerVoIPToken:(nonnull NSData *)voipToken;
  14. /// 处理收到的VoIP的消息,用于统计VoIP下发情况
  15. /// @param remoteInfo VoIP消息内容
  16. + (void)handleVoIPNotification:(nonnull NSDictionary *)remoteInfo;
  17. @end