1
我很努力地找到任何將兩個Flowable合併成一個的RxJava2實例。RxJava2將兩個Flowables合併爲一個
我想修改包括沿
Integer[] ints = new Integer[count];
Integer[] moreints = new Integer[count];
Arrays.fill(ints, 777);
Arrays.fill(moreints, 777);
Flowable<Integer> source = Flowable.fromArray(ints);
Flowable<Integer> anothersource = Flowable.fromArray(moreints);
Flowable<Integer> zippedsources = Flowable.zip(source, anothersource,
new BiFunction<Flowable<Integer>, Flowable<Integer>, Flowable<Integer>>() {
@Override
public void apply(Flowable<Integer> arg0, Flowable<Integer> arg1) throws Exception {
return arg0.blockingFirst() + arg1.blockingLast();
}
}).runOn(Schedulers.computation()).map(this).sequential();
編輯線的東西:我試圖從源代碼和anothersource採用整數並將它們加起來但似乎從RxJava1方式根本不同做這些......我嘗試過一堆返回Integer,Publisher,Flowable和void的變體,但是在zip運算符本身中一直在Eclipse中發生錯誤。
我無法找出去的地方在.zip(Iterable<? extends Publisher<? extends T>>, Function<? super Object[], ? extends R>).
你期待什麼樣的結果,做什麼結果,你有現在? – Benjamin
嘗試'BiFunction'並調整'apply'方法的類型。壓縮函數不會獲得源Flowful,而是每個調用的一個值。 –
akarnokd
謝謝@akarnokd--這正是我的誤解。 – ChopperOnDick