Android线程队列

前端之家收集整理的这篇文章主要介绍了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.f2er.com/android/313838.html

猜你在找的Android相关文章