使用rxjava2遍历列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用rxjava2遍历列表相关的知识,希望对你有一定的参考价值。
我有一个Custom对象列表(List<Item> itemsList
)。这是我的自定义类:
public class Item {
private String itemId;
private String itemName;
}
初始列表只有itemName; itemId将为空。我想迭代列表并为每个项目添加一个itemId,然后使用新列表,我需要对列表中的每个项目进行某种长操作。
for(Item item : itemsList){
item.setitemId = getUniqueId(); //getUniqueId() returns an unique id
doSomeLongOperation(item);
}
我是rxjava运营商的新手。请帮我解决如何使用rxjava2实现相同的功能。
谢谢!
答案
使用Observable.fromIterable
迭代列表中的所有项目和背景线程上的Subscribe
进行后台工作然后使用Map
操作符来更新你的Item
并且你长时间运行工作。完成后返回你需要的东西。
示例代码:
Observable.fromIterable(itemList)
.subscribeOn(Schedulers.io())
.map(new Function<Item, Item>() {
@Override
public Item apply(Item item) throws Exception {
item.setItemId("Id: " + System.currentTimeMillis());
Log.i(TAG, "In Map Item: " + item.toString());
// do some long operation and return
return item;
}
})
.observeOn(androidSchedulers.mainThread())
.subscribe(new Consumer<Item>() {
@Override
public void accept(Item item) throws Exception {
Log.i(TAG, "Item: " + item.toString());
}
});
以上是关于使用rxjava2遍历列表的主要内容,如果未能解决你的问题,请参考以下文章
Android实战——RxJava2+Retrofit+RxBinding解锁各种新姿势