具有长寿命 HttpConnection 的 Android 服务
I am tring to develop a project that connects to
寿命较长的彗星服务器 连接。我在服务部门做这份工作。 但是,当 Android 设备进入空闲模式时,我从服务启动的线程将停止工作,并且不会关闭连接或尝试新连接。
我应该使用什么方法来处理这个东西吗?
I am tring to develop a project that connects to
a comet server with long living
connections. i do this job in a service.
But when android device goes to idle mode, the thread i started from service stops working and do not close connections or try a new connection.
is there any method that i should use for this stuff.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 PowerManager.WakeLock 解决了我的问题。我知道,它会消耗电池,但是,我必须使用长期服务。
Using PowerManager.WakeLock solved my problem. I know, it kills baterry usage but, i had to use a long living service.