首先让我解释一下应用程序:有一个很大的http服务器列表,当它被ping时,会回复一个响应。最新响应和服务器的其他所有内容都保存在数据库中。
我已经将响应的ping和处理归结为精美的艺术 - 我只是想知道如何设置我的自动ping操作。
目前我已经设置了一个粘性的服务(Just Service,而不是IntentService)并触发一个线程(只是线程,而不是处理程序或asynctask)来调用,它有一个无限循环 - 在这个循环中我有一个Thread。 sleep(time)命令,其中时间可以由用户定义,并且每次重复循环时从共享首选项中读取。有时这个线程可以在24小时内休眠。
在线阅读之后,我似乎认为这种线程的暂停不是一个好主意,而是我应该安排线程以某种方式触发。我需要ping这个ping,而不是Android清除。根据我之前的问题,线程不会被Android停止,但我仍然不相信我应该告诉线程24小时睡觉。因此,虽然我很确定我的ping的时间是准确的,但我认为这不是这样做的。
我不知道如何安排这些任务,以便它们与用户的时间保持一致,而不是由android(可能有广播和接收器?)清除,同时也不会导致线程挂起。但是,如果有人能告诉我我所做的事情是错的,那么我会去做更多的研究。
从我可以收集到的,一个类似的系统,即即时信使如何查看你是否有新的信息要阅读,以类似的方式工作。然而,在寻找即时消息指南之后,他们要么让线程挂起,要么有一些第三方api来处理它们,在那里他们只是调用'onMessageReceived'方法,并处理那里的所有内容。
TL; DR - 从UI线程中获得无限循环的最佳做法是什么,需要长时间延迟。
答案 0 :(得分:0)
您可以将AlarmManager设置为特定时间,例如30米,45米或适用于您的情况。这样你就不需要在背景上运行线程或任何东西了。
请参阅Smack的ServerPingWithAlarmManager.class说明,因为它建议相同。
/**
* Send automatic server pings with the help of {@link AlarmManager}.
* <p>
* Smack's {@link PingManager} uses a <code>ScheduledThreadPoolExecutor</code> to schedule the
* automatic server pings, but on Android, those scheduled pings are not reliable. This is because
* the Android device may go into deep sleep where the system will not continue to run this causes
* <ul>
* <li>the system time to not move forward, which means that the time spent in deep sleep is not
* counted towards the scheduled delay time</li>
* <li>the scheduled Runnable is not run while the system is in deep sleep.</li>
* </ul>
* That is the reason Android comes with an API to schedule those tasks: AlarmManager. Which this
* class uses to determine every 30 minutes if a server ping is necessary. The interval of 30
* minutes is the ideal trade-off between reliability and low resource (battery) consumption.
* </p>
* <p>
* In order to use this class you need to call {@link #onCreate(Context)} <b>once</b>, for example
* in the <code>onCreate()</code> method of your Service holding the XMPPConnection. And to avoid
* leaking any resources, you should call {@link #onDestroy()} when you no longer need any of its
* functionality.
* </p>
*/