当互联网连接中断时,如何减慢异步任务中的后台执行速度

发布于 2024-11-26 05:58:31 字数 124 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我纯我任性 2024-12-03 05:58:31

合乎逻辑的做法是监听连接更改广播,并在没有可用连接时取消任务,并在连接再次可用时重新启动任务。您可以检查此问题以准备好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.

雨夜星沙 2024-12-03 05:58:31

文档说:

**线程规则**

为了使此类正常工作,必须遵循一些线程规则:

任务实例必须在 UI 线程上创建。

必须在 UI 线程上调用execute(Params...)。

不要手动调用 onPreExecute()、onPostExecute(Result)、doInBackground(Params...)、onProgressUpdate(Progress...)。

The task can be executed only once (an exception will be thrown if a second execution is attempted.)

尝试使用 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.

The task can be executed only once (an exception will be thrown if a second execution is attempted.)

Try using Handler, do the fetching HTTP stuff in Thread (you can make thread sleep for some amount of time using Thread.sleep(time); when you think you are ready to proceed call .sendMessage(message); and do the updates on the ui from the handler (handleMessage() or runOnUiThread() methods) if that is needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文