RxJava:doOnNext和doOnEach之间的区别
在哪些情况下我应该使用 doOnNext,在哪些情况下应该使用 doOnEach?
.doOnEach(new Action1<Notification<? super MessageProfile>>() {
@Override
public void call(Notification<? super MessageProfile> notification) {
}
})
.doOnNext(new Action1<MessageProfile>() {
@Override
public void call(MessageProfile profile) {
messageProfileDao.save(profile);
}
})
这看起来两个运算符具有相同的效果。