60 秒后停止异步任务
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解你的问题,你已经知道如何在n秒后放弃任务,但你需要知道它是否被放弃?
根据 AsyncTask 文档 它会抛出一个 TimeoutException。
做类似的事情:
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:
您可以使用
TimerTask
,您可以在doInBackround()
中启动该任务并安排 60 秒的时间。在TimerTask
的run()
中,只需调用异步任务的停止即可。you can use a
TimerTask
to which you can start in thedoInBackround()
with the schedule for 60 seconds. in therun()
of theTimerTask
just call the stop for the async task.