当互联网连接中断时,如何减慢异步任务中的后台执行速度
我使用 asynctask 向服务器发送 GET 请求,我想要做的是当互联网连接断开(没有互联网连接)时,我希望我的 AsynTask 休眠一下,然后在同一个 asynctask 中再次开始发送请求,我该怎么做
THx
i use asynctask to do the GET request to server, and What i want to do is when the internet connection down ( no internet connection ) i want my AsynTask sleep abit then start send request again in the same asynctask , How can i do that
THx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
合乎逻辑的做法是监听连接更改广播,并在没有可用连接时取消任务,并在连接再次可用时重新启动任务。您可以检查此问题以准备好BroadcastReceiver。
A logical thing to do would be listen to connectivity change broadcast and cancel the task when no connection available and restart it when the connection gets available again. You could check this Q to get the BroadcastReceiver ready.
文档说:
**线程规则**
为了使此类正常工作,必须遵循一些线程规则:
任务实例必须在 UI 线程上创建。
必须在 UI 线程上调用execute(Params...)。
不要手动调用 onPreExecute()、onPostExecute(Result)、doInBackground(Params...)、onProgressUpdate(Progress...)。
尝试使用 Handler,在 Thread 中获取 HTTP 内容(您可以使用 Thread.sleep(time); 使线程休眠一段时间) > 当您认为已准备好继续调用
.sendMessage(message);
并从处理程序 (handleMessage()
或runOnUiThread( )
方法)如果这是需要的。Documentation says:
**Threading rules**
There are a few threading rules that must be followed for this class to work properly:
The task instance must be created on the UI thread.
execute(Params...) must be invoked on the UI thread.
Do not call onPreExecute(), onPostExecute(Result), doInBackground(Params...), onProgressUpdate(Progress...) manually.
Try using
Handler
, do the fetching HTTP stuff inThread
(you can make thread sleep for some amount of time usingThread.sleep(time);
when you think you are ready to proceed call.sendMessage(message);
and do the updates on the ui from the handler (handleMessage()
orrunOnUiThread()
methods) if that is needed.