微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android线程队列

我想在一个单独的线程上完成一个工作/任务队列,但一次只能处理一个工作.所以不要同时.

有没有内置的Android为此?

谢谢,

编辑:
工作=从数据库获取信息.完成后,使用获取的信息更新UI.

解决方法

你检查过java.util.concurrent.Executors吗?你可以这样做:
final static ExecutorService tpe = Executors.newSingleThreadExecutor();
...
tpe.submit(new Runnable() {
    @Override
    public void run() {
        // your work
    }
}):

它不是特定于Android的,它是jdk5的一部分.

来自doc:

Creates an Executor that uses a single worker thread operating off an unbounded queue. (Note however that if this single thread terminates due to a failure during execution prior to shutdown,a new one will take its place if needed to execute subsequent tasks.) Tasks are guaranteed to execute sequentially,and no more than one task will be active at any given time. Unlike the otherwise equivalent newFixedThreadPool(1) the returned executor is guaranteed not to be reconfigurable to use additional threads.

原文地址:https://www.jb51.cc/android/313838.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐