根据订阅类型获取被订阅用户列表相关的错误码

最近更新时间:2022-09-20 05:17:40

typedef NS_ENUM(NSInteger, ARtmQueryPeersBySubscriptionOptionErrorCode) {
    
    /**
     0: 方法调用成功,或根据订阅类型获取被订阅用户列表成功。
     */
    ARtmQueryPeersBySubscriptionOptionErrorOk = 0,
    
    /**
     1: 通用错误。根据订阅类型获取被订阅用户列表失败。
     */
    ARtmQueryPeersBySubscriptionOptionErrorFailure = 1,
    
    /**
     2: 服务器响应超时。当前的超时设置为 5 秒。可能原因:用户正处于 ARtmConnectionStateAborted 状态或 ARtmConnectionStateReconnecting 状态。
     */
    ARtmQueryPeersBySubscriptionOptionErrorTimeout = 2,
    
    /**
     3: 方法调用过于频繁。超过 10 次每 5 秒的限制。
     */
    ARtmQueryPeersBySubscriptionOptionErrorTooOften = 3,
    
    /**
     101: A RTM 服务未完成初始化。
     */
    ARtmQueryPeersBySubscriptionOptionErrorNotInitialized = 101,
    
    /**
     102: 本次操作前未调用 loginByToken 方法或者 loginByToken 方法调用未成功。
     */
    ARtmQueryPeersBySubscriptionOptionErrorNotLoggedIn = 102,
};