标签:
1.subscribeOn()//网络数据库io,图像cpu
2.Observable.concat(ob1, ob2, ob3)会把三个ob返回的结果合并
3.Observable.concat(ob1, ob2, ob3).takeFirst(//return boolean) //三个ob都会执行,再在takeFirst里做条件判断,如果ob1不符合条件,结果不要,如果ob2和ob3都符合条件,只拿ob2的结果
eg:Observable.concat(ob1<List>, ob2<List>, ob3<List>).takeFirst(list -> list.size()>4)//如果ob2和ob3的list size都大于4,只取ob2的list
标签:
原文地址:http://www.cnblogs.com/baron89/p/4745596.html