作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 RxJava 的新手,正在努力解决一个(我猜)简单的问题。我想在 3 个线程中同时处理订阅部分。这就是我使用 FixedThreadPool 的原因。示例代码:
Observer.just("one", "two", "three", "four")
.observeOn(Schedulers.io())
.subscribeOn(Schedulers.from(Executors.newFixedThreadPool(3))
.subscribe(new Observer<String>() {
public void onNext(String string) {
Log.d(TAG, "Started: " + string);
SystemClock.sleep(1000);
Log.d(TAG, "Ended: " + string);
}
(...)
}
预期结果:
Started: one
Started: two
Started: three
Ended: one
Started: four
Ended: two
Ended: three
Ended: four
实际结果:
Started: one
Ended: one
Started: two
Ended: two
Started: three
Ended: three
Started: four
Ended: four
我做错了什么?
最佳答案
RxJava Observables 是顺序的,subscribeOn
和 observeOn
运算符不会并行运行值。
最接近的做法是通过模键对值进行分组,通过 observeOn
运行它们并合并结果:
AtomicInteger count = new AtomicInteger();
Observable.range(1, 100)
.groupBy(v -> count.getAndIncrement() % 3)
.flatMap(g -> g
.observeOn(Schedulers.computation())
.map(v -> Thread.currentThread() + ": " + v))
.toBlocking()
.forEach(System.out::println);
关于android - 如何在 Android 上使用 RxJava 在多线程上运行订阅者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33268120/
我是一名优秀的程序员,十分优秀!