久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <i id='1HCrp'><tr id='1HCrp'><dt id='1HCrp'><q id='1HCrp'><span id='1HCrp'><b id='1HCrp'><form id='1HCrp'><ins id='1HCrp'></ins><ul id='1HCrp'></ul><sub id='1HCrp'></sub></form><legend id='1HCrp'></legend><bdo id='1HCrp'><pre id='1HCrp'><center id='1HCrp'></center></pre></bdo></b><th id='1HCrp'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='1HCrp'><tfoot id='1HCrp'></tfoot><dl id='1HCrp'><fieldset id='1HCrp'></fieldset></dl></div>

      <small id='1HCrp'></small><noframes id='1HCrp'>

      <legend id='1HCrp'><style id='1HCrp'><dir id='1HCrp'><q id='1HCrp'></q></dir></style></legend>
      <tfoot id='1HCrp'></tfoot>

        <bdo id='1HCrp'></bdo><ul id='1HCrp'></ul>
      1. 如果為 setKeepAliveTimeout 方法設置 15 分鐘,VOIP 應

        VOIP app is not wake up in time if set 15 min for setKeepAliveTimeout method(如果為 setKeepAliveTimeout 方法設置 15 分鐘,VOIP 應用程序不會及時喚醒)

            <legend id='A2bQI'><style id='A2bQI'><dir id='A2bQI'><q id='A2bQI'></q></dir></style></legend>

            <small id='A2bQI'></small><noframes id='A2bQI'>

            <tfoot id='A2bQI'></tfoot>
              <tbody id='A2bQI'></tbody>
            <i id='A2bQI'><tr id='A2bQI'><dt id='A2bQI'><q id='A2bQI'><span id='A2bQI'><b id='A2bQI'><form id='A2bQI'><ins id='A2bQI'></ins><ul id='A2bQI'></ul><sub id='A2bQI'></sub></form><legend id='A2bQI'></legend><bdo id='A2bQI'><pre id='A2bQI'><center id='A2bQI'></center></pre></bdo></b><th id='A2bQI'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='A2bQI'><tfoot id='A2bQI'></tfoot><dl id='A2bQI'><fieldset id='A2bQI'></fieldset></dl></div>

              <bdo id='A2bQI'></bdo><ul id='A2bQI'></ul>

                1. 本文介紹了如果為 setKeepAliveTimeout 方法設置 15 分鐘,VOIP 應用程序不會及時喚醒的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我開發的應用程序應該每 15 分鐘處理一次數據.所以我在 plist 文件中添加了 voip 標志.并使用 900 秒(15 分鐘)的 setKeepAliveTimeout.還添加了處理一些數據的后臺任務功能.處理數據最多需要 10 秒.

                  I've developed app which should process some data every 15 min. So I added voip flag into plist file. And use setKeepAliveTimeout with 900 sec(15 min). Also added background task functionality which processes some data. Processing of data takes up to 10 seconds.

                  問題是應用沒有及時喚醒.有時在 12 分鐘后,有時在 16 分鐘后等等.但我需要正好在 15 分鐘內.

                  The problem is that app wakes up NOT in time. Sometimes after 12 min, sometimes after 16 min etc. But I need exactly in 15 min.

                  如何解決以下問題?

                  iOS版本為5.0+

                  如果是 iOS 特定的,請向我提供有關蘋果 api 文檔的官方參考.

                  If it's iOS's specific please provide me official reference into the apple's api document where this mentioned .

                  推薦答案

                  setKeepAliveTimeout:handler: 不是通用的間隔調度程序.它允許您設置提供的處理程序的調用之間的最大間隔.該功能的目的是幫助您防止連接超時或落后于您的 VOIP 應用程序標準(例如在線/離開狀態).

                  setKeepAliveTimeout:handler: is not a general purpose interval scheduler. It allows you to set the maximum interval between invocations of the supplied handler. The purpose of the function is to help you keep your connections from timing out or falling behind your VOIP applications standards (for things like online/away status).

                  所以第一個參數 (timeout) 告訴 iOS 在不超過 15 分鐘內調用您的處理程序.如果操作系統決定在 12 分鐘內有一些空閑周期,它可能會調用您的處理程序.或者在 7 分鐘內,或者 15 分鐘內.

                  So the first parameter (timeout) tells iOS to call your handler in no more than 15 minutes. If the OS decides that it's got some cycles to spare at 12 minutes, it might call your handler. Or in 7 minutes, or 15.

                  如果您需要對間隔進行更精細的控制,您應該設置一個較小的超時窗口并忽略對您不重要的調用.但是調用仍然會相當不規則.

                  If you need finer grained control of the interval, you should set a smaller timeout window and just ignore invocations that aren't important to you. But the invocations will still going be fairly irregular.

                  http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIApplication_Class/Reference/Reference.html#//apple_ref/occ/instm/UIApplication/setKeepAliveTimeout:handler:

                  一般來說,目前沒有辦法讓它按精確的時間表喚醒您的應用.您必須遵守 iOS 有限的后臺處理選項,所有這些選項都旨在為操作系統提供很大的余地來管理所有進程的總體優先級和資源需求.

                  In general, there is currently no way to make it wake your app on a precise schedule. You must adhere to iOS' limited background processing options, all of which are designed to give the OS a lot of leeway to manage overall priorities and resource needs across ALL processes.

                  這篇關于如果為 setKeepAliveTimeout 方法設置 15 分鐘,VOIP 應用程序不會及時喚醒的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to animate a UIImageview to display fullscreen by tapping on it?(如何通過點擊動畫 UIImageview 以顯示全屏?)
                  To stop segue and show alert(停止 segue 并顯示警報)
                  iOS 5 storyboard, programmatically determine path(iOS 5 故事板,以編程方式確定路徑)
                  Icon already includes gloss effects(圖標已經包含光澤效果)
                  How does UIEdgeInsetsMake work?(UIEdgeInsetsMake 是如何工作的?)
                  UIProgressView and Custom Track and Progress Images (iOS 5 properties)(UIProgressView 和自定義跟蹤和進度圖像(iOS 5 屬性))

                2. <legend id='KRBTt'><style id='KRBTt'><dir id='KRBTt'><q id='KRBTt'></q></dir></style></legend>
                      • <i id='KRBTt'><tr id='KRBTt'><dt id='KRBTt'><q id='KRBTt'><span id='KRBTt'><b id='KRBTt'><form id='KRBTt'><ins id='KRBTt'></ins><ul id='KRBTt'></ul><sub id='KRBTt'></sub></form><legend id='KRBTt'></legend><bdo id='KRBTt'><pre id='KRBTt'><center id='KRBTt'></center></pre></bdo></b><th id='KRBTt'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='KRBTt'><tfoot id='KRBTt'></tfoot><dl id='KRBTt'><fieldset id='KRBTt'></fieldset></dl></div>
                      • <small id='KRBTt'></small><noframes id='KRBTt'>

                        1. <tfoot id='KRBTt'></tfoot>
                            <tbody id='KRBTt'></tbody>
                            <bdo id='KRBTt'></bdo><ul id='KRBTt'></ul>

                          • 主站蜘蛛池模板: 一区二区三区国产 | 国产一区二区在线免费观看 | 中文字幕av网 | 老司机成人在线 | 偷拍自拍在线观看 | 免费观看毛片 | 亚洲第一中文字幕 | 久久机热 | 精品国产一区二区三区久久久四川 | 国产日韩欧美中文 | 亚洲精品在线91 | 亚洲国产精品人人爽夜夜爽 | 久久国产电影 | 久久久久国产精品一区三寸 | 日韩欧美在线一区 | 成年视频在线观看 | 99精品视频在线观看 | 91色视频在线观看 | 国产一级片一区二区三区 | 亚洲成人网在线播放 | 日韩精品视频一区二区三区 | 国产美女视频一区 | 亚洲综合电影 | www国产精品| 99re免费| 国产免费视频在线 | 精品综合久久久 | 国产视频福利 | 日韩精品一区二区三区在线观看 | 亚洲 欧美 日韩在线 | 看a级黄色毛片 | 欧美日韩国产在线观看 | 国产黄色小视频在线观看 | 激情一区 | www久久| 日韩一区二区三区四区五区六区 | 一级毛片大全免费播放 | 国产亚洲二区 | av永久免费| 国产精品视频久久 | 欧美日韩精品国产 |