如何在Firebase RemoteConfig获取请求上添加超时?

时间:2018-06-07 15:07:01

标签: ios swift firebase timeout firebase-remote-config

我在我的应用中使用Firebase远程配置功能。 我需要在获取请求中添加网络超时。

#if DEBUG
let expirationDuration: TimeInterval = 0
RemoteConfig.remoteConfig().configSettings = RemoteConfigSettings(developerModeEnabled: true)
#else
let expirationDuration: TimeInterval = 3600
#endif

RemoteConfig.remoteConfig().fetch(withExpirationDuration: expirationDuration) {
    [weak self] (status, error) in

    guard error == nil else {
        print ("Uh-oh. Got an error fetching remote values \(String(describing: error))")
            return
        }

    RemoteConfig.remoteConfig().activateFetched()

    self?.fetchComplete = true
    self?.loadingDoneCallback?()
}

我该怎么办?

2 个答案:

答案 0 :(得分:3)

您可以使用计时器来解决此问题:

  remoteConfigTimer = Timer.scheduledTimer(withTimeInterval: 10,
                                                 repeats: false) {
                                                    timer in
                                                    self.remoteConfigTimerExpired = true
                                                    self.loadingDoneCallback()
  }

在这里将超时定义为Timer的timeInterval,一旦到达此计时器,您只需执行与RemoteConfig调用成功时将执行的相同的方法即可。

请注意,此功能仅适用于iOS 10或更高版本。

答案 1 :(得分:0)

初始化fetchTimeout时可以使用FIRRemoteConfig.configSettings设置。

文档和详细信息为here