带计时器的推送通知或线程
在我的应用程序中,我具有像 Twitter 这样的功能,当您没有刷新屏幕时,如果有新消息,您会收到一条消息“您有 n 个新消息”和一个刷新按钮,按下该按钮将刷新屏幕。
我基本上是从带有一些 url 的 xml 中获取所有数据。
在线程的情况下,我需要在一段时间后调用计时器,这可能会影响应用程序的性能。
有人可以建议使用推送通知或带计时器的线程更好吗?
提前致谢。
In my application, I'm having functionality like twitter that when you have not refreshed your screen, and if there're new messages then you get this message that "You have n new messages" and a refresh button, which on press will refresh the screen.
I'm basically fetching all the data from an xml with some url.
In case of thread, I need to call a timer after some time period which might affect the app performance.
Can anybody please suggest wheather what will be better to use push notifications or thread with timer?
Thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想通知用户可用的新数据,那么一定要使用推送通知,而不是使用计时器在线程上拉取信息。
拉取信息总是比从外部源推送消息消耗更多的资源。
If you want to just notify the user about the new data available then definitely go for Push notifications rather than pulling the information on thread with timer.
Pulling of information always consume more resources than pushing message from external sources.