60 秒后停止异步任务

发布于 2024-10-25 17:33:39 字数 125 浏览 5 评论 0原文

我想在 60 秒后停止异步任务

我知道有一个方法 get(time , timeunit) 我应该在 doInBackground 中使用它 但我不知道如何检查超时是否已达到,请提供示例一行代码。

谢谢

i want to stop async task after 60 second

i know there is a method get(time , timeunit) which i should be using in doInBackground
but i dont know how to check if the time out has reached or not please provide that sample one line code .

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

棒棒糖 2024-11-01 17:33:40

如果我正确理解你的问题,你已经知道如何在n秒后放弃任务,但你需要知道它是否被放弃?

根据 AsyncTask 文档 它会抛出一个 TimeoutException。

做类似的事情:

try {
    //your AsyncTask code
} catch(TimeoutException ex) {
    //your timeout code
}

If I understand your question correctly, you already know how to abandon the task after n seconds, but you need to know IF it was abandoned?

According to AsyncTask docs it'll throw a TimeoutException.

Do something like:

try {
    //your AsyncTask code
} catch(TimeoutException ex) {
    //your timeout code
}
猫卆 2024-11-01 17:33:40

您可以使用 TimerTask,您可以在 doInBackround() 中启动该任务并安排 60 秒的时间。在 TimerTaskrun() 中,只需调用异步任务的停止即可。

you can use a TimerTask to which you can start in the doInBackround() with the schedule for 60 seconds. in the run() of the TimerTask just call the stop for the async task.

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